본문 바로가기

BOJ/C++

사탕상자

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
78
#include <iostream>
#include <vector>
#include <cmath>
 
#define MAXX 1000001
using namespace std;
 
typedef long long ll;
int tree_h;
int ret = 0;
 
void update(vector<int> &tree, int node, int diff, int idx, int start, int end) {
    if (idx < start || end < idx) {
        return;
    }
    tree[node] += diff;
    if (start != end) {
        update(tree, node*2, diff, idx, start, (start+end)/2);
        update(tree, node*2+1, diff, idx, (start+end)/2+1end);
    }
}
int query(vector<int> & tree, int node, int idx, int start, int end) {
    if (start == end ) {
       
        return start;
    }
    //왼쪽에 idx개 이상의 노드가 있으면 그쪽으로 탐색한다. 
    if ((node*2 <= tree_h && tree[node*2>= idx)) {
        //사탕의 맛 순서대로, 개수만큼 정렬되어있기 때문에 idx보다 지금 가르키는 노드의 값이 크다면 왼쪽에 그만큼 사탕이 존재하다는 것이다. 
        //즉, 1번 사탕이 3개 / 3번 사탕이 4개 있다면 
        //세그먼트 트리의 리프노드는 
        //1113333 이 될 것이다. 
        return ret = query(tree, node*2, idx, start, (start+end)/2);
    }
    
    idx -= tree[node*2]; //왼쪽에 없으니까 왼쪽에 있는 개수만큼 빼준다.  
    
    //오른쪽 탐색 
    if ((node*2+1 <= tree_h && tree[node*2+1>= idx)) {
        return ret = query(tree, node*2+1, idx, (start+end)/2+1end);
    }
}
int main()
{
    ios_base::sync_with_stdio(false);
    cin.tie(0);
 
    int n;
    cin >> n;
 
    int h = (int)ceil(log2(MAXX));
    tree_h = 1 << (h+1);
 
    vector<int> tree(tree_h);
 
    while(n--) {
        int a, b,c;
        cin >> a;
 
        if (a == 1) {
            //사탕을 꺼낸다. 
            cin >> b;
            //사탕의 순위 
 
            int taste = query(tree, 1, b, 0, MAXX-1);
            cout <<taste << '\n';
            update(tree, 1-1, taste, 0, MAXX-1);
        }
        else {
            cin >> b >> c;
            //b는 넣을 사탕의 맛 
            //c가 양수면 넣고 음수면 뺀다. 
            update(tree, 1, c, b, 0, MAXX-1);
        }
       
    }
    return 0;
}
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter
http://colorscripter.com/info#e" target="_blank" style="text-decoration:none;color:white">cs

'BOJ > C++' 카테고리의 다른 글

구슬탈출4  (0) 2020.02.18
성곽  (0) 2020.02.18
보석도둑  (0) 2020.02.14
커피숍2  (0) 2020.02.14
가운데를 말해요  (0) 2020.02.14