본문 바로가기
한국으로/알고리즘 문제풀이

[문제풀이] 2776번: 암기왕

by 영킴. 2018. 7. 4.

[문제풀이] 2776번: 암기왕

https://www.acmicpc.net/problem/2776


문제유형

이진탐색, 병합정렬

Solution

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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#include <stdio.h>
 
int    note[1000010];
int    tmp[1000010];
 
int binarySearch(int s, int e, int data)
{
    int m;
 
    while (s <= e)
    {
        m = (s + e) / 2;
        if (note[m] == data) return 1;
        else if (note[m] < data) s = m + 1;
        else if (note[m] > data) e = m - 1;
    }
    return 0;
}
 
void init()
{
    for (register int i = 0; note[i]; i++)
    {
        note[i] = 0;
        tmp[i] = 0;
    }
}
 
void merge_sort(int s, int e)
{
    int idxtmp, idx1, idx2, m;
 
    if (s >= e) return;
 
    m = (s + e) / 2;
    merge_sort(s, m);
    merge_sort(m + 1, e);
 
    idxtmp = s; idx1 = s; idx2 = m + 1;
 
    while (idx1 <= m && idx2 <= e)
    {
        if (note[idx1] < note[idx2]) tmp[idxtmp++= note[idx1++];
        else tmp[idxtmp++= note[idx2++];
    }
 
    while (idx1 <= m) tmp[idxtmp++= note[idx1++];
    while (idx2 <= e) tmp[idxtmp++= note[idx2++];
 
    for (register int i = s; i <= e; i++) note[i] = tmp[i];
}
 
int main()
{
    int T, N, M, i, j;
    scanf("%d"&T);
    while (T--)
    {
        init();
        scanf("%d"&N);
        for (i = 0; i < N; i++)
        {
            scanf("%d"&note[i]);
        }
        merge_sort(0, N - 1);
 
        scanf("%d"&M);
        for (i = 0; i < M; i++)
        {
            int d = 0;
            scanf("%d"&d);
            printf("%d\n", binarySearch(0, N, d));
        }
    }
 
    return 0;
}
cs