본문 바로가기

BOJ/C++

커피숍2

관련문제 

2020/02/14 - [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
#include <iostream>
#include <vector>
#include <cmath>
 
using namespace std;
 
typedef long long ll;
 
void update(vector<ll> &tree, int node, ll 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);
        
    }
}
ll sum(vector<ll> &tree, int node, int left, int right, int start, int end) {
    //[start, end]밖에 있는 경우 
    //[left, right]가 [start, end]를 포함할때 
    //그 외 
 
    if (right < start || end < left) return 0;
    else if (left <= start && end <= right) return tree[node];
    else {
        return sum(tree, node*2, left, right, start, (start+end)/2+ sum(tree, node*2+1, left, right, (start+end)/2+1end);
    }
}
ll init(vector<ll> &tree, vector<ll> &nums, int node, int start, int end) {
    if (start == endreturn tree[node] = nums[start];
    return tree[node] = init(tree, nums, node*2, start, (start+end)/2+ init(tree, nums, node*2+1, (start+end)/2+1end);
}
int main()
{
    ios_base::sync_with_stdio(false);
    cin.tie(0);
 
    int n, q;
    cin >> n >> q;
 
    int h = (int)ceil(log2(n));
    int tree_h = 1<<(h+1);
 
    vector<ll> nums, tree(tree_h);
 
    for (int i = 0; i < n; i++) {
        int tmp;
        cin >> tmp;
        nums.push_back(tmp);
    }
 
    init(tree, nums, 10, n-1);
 
    while(q--) {
        int x, y, a, b;
        
        cin >> x >> y >> a >> b;
 
        x--;y--;a--;
        if (x > y) {
            int tmp = x;
            x = y;
            y = tmp;
        }
        cout << sum(tree, 1, x, y, 0, n-1<< '\n';
 
        ll diff = b - nums[a];
        nums[a] = b;
        update(tree, 1, diff, a, 0, n-1);
 
    }
    return 0;
}
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter

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

사탕상자  (0) 2020.02.15
보석도둑  (0) 2020.02.14
가운데를 말해요  (0) 2020.02.14
구간 합 구하기  (0) 2020.02.14
카드게임  (0) 2020.02.14