반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 오퍼레터
- boj #19237 #어른 상어
- softeer
- 백트래킹
- 6987
- 백준
- 연결요소
- 경력
- dfs
- 이분탐색
- 13908
- Kafka
- 기술면접
- 처우협의
- msSQL
- 파라메트릭
- BOJ
- incr
- Docker
- 성적평가
- upper_bound
- 처우산정
- compose
- 매개변수탐색
- @P0
- 물채우기
- 소프티어
- BFS
- OFFSET
- 퇴사통보
Archives
- Today
- Total
기술 블로그
10999번 구간 합 구하기 2 본문
728x90
반응형
https://www.acmicpc.net/problem/10999
세그먼트 트리 with Lazy Propagation
https://www.acmicpc.net/blog/view/26
https://bowbowbow.tistory.com/4
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 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 | #include<bits/stdc++.h> using namespace std; #define LL long long vector<LL> v, tree, lazy; int n, m, k; LL init(int node, int s, int e) { if (s == e) return tree[node] = v[s]; return tree[node] = init(2 * node, s, (s + e) / 2) + init(2 * node + 1, (s + e) / 2 + 1, e); } void update_lazy(int node, int s, int e) { if (lazy[node] != 0) { tree[node] += (e - s + 1) * lazy[node]; // leaf가 아니라면 if (s != e) { lazy[2 * node] += lazy[node]; lazy[2 * node + 1] += lazy[node]; } lazy[node] = 0; } } void update_range(int node, int l, int r, int s, int e, LL diff) { update_lazy(node, s, e); if (r < s || e < l) return; if (l <= s && e <= r) { tree[node] += (e - s + 1) * diff; if (s != e) { lazy[2 * node] += diff; lazy[2 * node + 1] += diff; } return; } update_range(2 * node, l, r, s, (s + e) / 2, diff); update_range(2 * node + 1, l, r, (s + e) / 2 + 1, e, diff); tree[node] = tree[2 * node] + tree[2 * node + 1]; } LL sum(int node, int l, int r, int s, int e) { update_lazy(node, s, e); if (r < s || e < l) return 0; if (l <= s && e <= r) return tree[node]; return sum(2 * node, l, r, s, (s + e) / 2) + sum(2 * node + 1, l, r, (s + e) / 2 + 1, e); } int main() { //freopen("C:\\Users\\park7\\Desktop\\buba.in.6", "r", stdin); cin.tie(0); scanf("%d %d %d", &n, &m, &k); int h = (int)ceil(log2(n)); int tree_size = 1 << (h + 1); v.assign(n, 0); tree.assign(tree_size, 0); lazy.assign(tree_size, 0); for (int i = 0; i < n; i++) { scanf("%lld", &v[i]); } init(1, 0, n - 1); for (int i = 0; i < m + k; i++) { int a; scanf("%d", &a); if (a == 1) { int b, c; LL d; scanf("%d %d %lld", &b, &c, &d); update_range(1, b - 1, c - 1, 0, n - 1, d); } else { int b, c; scanf("%d %d", &b, &c); printf("%lld\n", sum(1, b - 1, c - 1, 0, n - 1)); } } return 0; } | cs |
728x90
반응형
'알고리즘 문제 > BOJ' 카테고리의 다른 글
2933번 미네랄, 18500번 미네랄 2 (0) | 2020.04.12 |
---|---|
18870번 좌표 압축 (0) | 2020.04.11 |
1480번 보석 모으기 (0) | 2020.04.09 |
2033번 반올림 (0) | 2020.04.09 |
2891번 카약과 강풍 (0) | 2020.04.07 |