티스토리 뷰

n과 m은 최대 100,000이다.

무작정 for 돌리면서 찾으면 최악의 경우 시간복잡도가 nm.. n^2이기 때문에 해쉬 맵 사용.

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
#include <cstdio>
#include <unordered_map>
using namespace std;
 
int main()
{
    int argc;
    scanf("%d"&argc);
    unordered_map<intint> hash;
    for (size_t i = 0; i < argc; i++) {
        int num;
        scanf("%d"&num);
        hash.insert(pair<intint>(num, num));
    }
    scanf("%d"&argc);
    for (size_t i = 0; i < argc; i++) {
        int num;
        scanf("%d"&num);
        if (hash.find(num) == hash.end())
            printf("%d"0);
        else
            printf("%d"1);
        printf("\n");
    }
    return 0;
}
cs
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
«   2025/01   »
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 31
글 보관함