728x90
매우 easy한 문제
https://www.acmicpc.net/problem/1920
#include <bits/stdc++.h>
using namespace std;
int main(){
ios_base::sync_with_stdio(0); cin.tie(NULL); cout.tie(NULL);
//1. 입력받기
set<int> s; //빠른 조회-세트 사용
int n,m, a;
//주어진 n개의 자연수
cin >> n;
while(n--){
cin >> a;
s.insert(a);
}
//조회할 m개의 자연수
cin >> m;
set<int>::iterator iter;
while(m--){
cin >> a;
iter = s.find(a);
if(iter !=s.end()) cout << "1\n";
else cout <<"0\n";
}
}
728x90
'알고리즘 > 알고리즘 스터디' 카테고리의 다른 글
1316번: 그룹 단어 체커 (0) | 2023.03.02 |
---|---|
10845번: 큐 (0) | 2023.03.02 |
17071번: 숨바꼭질 5 (0) | 2023.03.02 |
10773번: 제로 (0) | 2023.03.01 |
10828번: 스택 (0) | 2023.02.27 |