백준 10815, 10816 숫자 카드

Problem : 숫자 카드

유형 : 해싱, 이분 탐색


문제 해석

  • 숫자가 몇번 등장했는지 확인하라

문제 재해석

  • 숫자의 범위가 20억이다.
  • 하지만 등장하는 숫자 카드의 종 개수는 50만개 이다.

해결 전략

해싱

  • 해싱을 이용하여, 해당 숫자가 몇번 등장했는지 카운트 한다.

이진 탐색

  • 정렬 한다.
  • 해당 숫자가 등장하기 시작한 곳,
  • 해당 숫자보다 큰 숫자가 나오기 시작한 곳의 거리를 잰다.

설계, 구현

  • unordered_map 을 이용했다.
  • lower, upper_bound를 이용했다.
    • 찾는 숫자가 없는 경우도 존재 할 수 있는 경우는 예외 처리 해주었다.
    • 사실 따로 예외 처리를 하지 않고, 거리의 차를 구해도 결과는 동일하다.

주의할 점

  • 없음

코드 (10816)

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
#include <bits/stdc++.h>
using namespace std;

#if 00
unordered_map<int, int> hash_m;

void Solve() {
    int m;
    cin >> m;

    int num;
    while (m--) {
        cin >> num;
        cout << hash_m[num] << " ";
    }
}

void Input() {
    int n;
    cin >> n;

    int num;
    while (n--) {
        cin >> num;
        hash_m[num]++;
    }
}

#else

vector<int> vec;

void Solve() {
    int m;
    cin >> m;

    int num;
    while (m--) {
        cin >> num;
        auto lower = lower_bound(vec.begin(), vec.end(), num);
        if (lower == vec.end()) {
            cout << 0 << " ";
            continue;
        }

        auto upper = upper_bound(vec.begin(), vec.end(), num);
        cout << upper - lower << " ";
    }
}

#endif

void Input() {
    int n;
    cin >> n;
    vec.resize(n);
    for (int& it : vec) {
        cin >> it;
    }
    sort(vec.begin(), vec.end());
}

int main()
{
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);  cout.tie(NULL);
    freopen("input.txt", "r", stdin);

    Input();
    Solve();

    return 0;
}

코드 (10815)

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
#include <bits/stdc++.h>
using namespace std;

#if 0
unordered_map<int, bool> hash_m;

void Solve() {
    int m;
    cin >> m;

    int num;
    while (m--) {
        cin >> num;
        cout << hash_m[num] << " ";
    }
}

void Input() {
    int n;
    cin >> n;

    int num;
    while (n--) {
        cin >> num;
        if (!hash_m[num]) hash_m[num] = true;
    }
}

#else

vector<int> vec;

void Solve() {
    int m;
    cin >> m;

    int num;
    while (m--) {
        cin >> num;
        auto lower = lower_bound(vec.begin(), vec.end(), num);
        auto upper = upper_bound(vec.begin(), vec.end(), num);
        cout << (lower == upper ? 0 : 1) << " ";
    }
}


void Input() {
    int n;
    cin >> n;
    vec.resize(n);
    for (int& it : vec) {
        cin >> it;
    }
    sort(vec.begin(), vec.end());
}

#endif


int main()
{
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);  cout.tie(NULL);
    freopen("input.txt", "r", stdin);

    Input();
    Solve();

    return 0;
}

피드백

  • 없음