Recent Posts
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
- 자원부족
- taint
- 오블완
- k8s #kubernetes #쿠버네티스
- python
- JanusWebRTCServer
- tolerated
- mp4fpsmod
- pytest
- VARCHAR (1)
- terminal
- 코루틴 빌더
- 헥사고날아키텍처 #육각형아키텍처 #유스케이스
- preemption #
- JanusWebRTC
- 개성국밥
- 티스토리챌린지
- table not found
- JanusWebRTCGateway
- Spring Batch
- PersistenceContext
- 깡돼후
- Value too long for column
- 달인막창
- 겨울 부산
- 코루틴 컨텍스트
- vfr video
- kotlin
- JanusGateway
- PytestPluginManager
Archives
너와 나의 스토리
[BOJ] 12837 가계부 (Hard) 본문
반응형
문제: https://www.acmicpc.net/problem/12837
문제 풀이:
입력으로 [1 p x]가 들어오면 index가 p인 곳의 값을 x로 바꿔주고
입력으로 [2 p q]가 들어오면 index p부터 q까지의 합을 출력한다.
소스 코드:
#include <iostream>
#define sz 1000001*4
using namespace std;
typedef long long ll;
int n, m;
ll seg[sz];
ll update(int pos, int val, int x, int y, int node) {
if (pos<x || pos>y) return seg[node];
if (x == y) return seg[node] += val;
int mid = (x + y) >> 1;
return seg[node] = update(pos, val, x, mid, node * 2) + update(pos, val, mid + 1, y, node * 2 + 1);
}
ll query(int low,int hi, int x, int y, int node) {
if (y<low || x>hi) return 0;
if (low <= x && y <= hi) return seg[node];
int mid = (x + y) >> 1;
return query(low,hi, x, mid, node * 2) + query(low,hi, mid + 1, y, node * 2 + 1);
}
int main() {
ios::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> n >> m;
while (m--) {
int a, b, c;
cin >> a >> b >> c;
if (a == 1) {
update(b, c, 1, n, 1);
}
else {
cout << query(b, c,1, n, 1) << '\n';
}
}
return 0;
}
반응형
'Algorithm > 세그먼트 트리 (Segment Tree)' 카테고리의 다른 글
[BOJ] 1275 커피숍2 (0) | 2019.09.11 |
---|---|
[BOJ] 1321 군인 (0) | 2019.09.10 |
[BOJ] 2357 최솟값과 최댓값 (0) | 2019.09.10 |
(BOJ) 1849 순열 / 1777 순열복원 (0) | 2019.01.19 |
(BOJ) 5676 음주 코딩 (0) | 2019.01.19 |
Comments