Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- DFS
- c++
- 문자열
- 유니티
- 트리
- 구현
- BFS
- 재귀
- 알고리즘
- XR Interaction Toolkit
- 그래프
- 백준
- 정렬
- 자료구조
- ue5
- Unreal Engine 5
- 수학
- VR
- 유니온 파인드
- 누적 합
- 다이나믹 프로그래밍
- 다익스트라
- 그리디 알고리즘
- 우선순위 큐
- 시뮬레이션
- 백트래킹
- 스택
- Team Fortress 2
- 브루트포스
- 투 포인터
Archives
- Today
- Total
1일1알
백준 10815번 숫자 카드 C++ 본문
set을 사용했다.
#include <iostream>
#include <string>
#include <vector>
#include <math.h>
#include <algorithm>
#include <utility>
#include <stack>
#include <queue>
#include <math.h>
#include <set>
#include <map>
#include <unordered_map>
#include <unordered_set>
#include <iomanip>
#include <limits.h>
using namespace std;
using ll = long long;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
set<int> s;
int n, m;
cin >> n;
for (int i = 0; i < n; i++) {
int num;
cin >> num;
s.insert(num);
}
cin >> m;
for (int i = 0; i < m; i++) {
int num;
cin >> num;
auto it = s.find(num);
if (it == s.end()) {
cout << 0 << " ";
}
else {
cout << 1 << " ";
}
}
};
'알고리즘' 카테고리의 다른 글
백준 1021번 회전하는 큐 C++ (0) | 2022.06.05 |
---|---|
백준 1406번 에디터 C++ (0) | 2022.06.04 |
백준 1158번 요세푸스 문제 C++ (0) | 2022.06.02 |
백준 10799번 쇠막대기 C++ (0) | 2022.06.01 |
백준 17298번 오큰수 C++ (0) | 2022.05.31 |