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 |
Tags
- 겨울 부산
- gitflow-shFlags
- PytestPluginManager
- preemption #
- Value too long for column
- 달인막창
- kotlin
- 자원부족
- JanusGateway
- 코루틴 컨텍스트
- 깡돼후
- pytest
- PersistenceContext
- VARCHAR (1)
- terminal
- mp4fpsmod
- taint
- JanusWebRTCGateway
- JanusWebRTCServer
- table not found
- 개성국밥
- ErrorResponse
- tolerated
- addhooks
- vfr video
- Spring Batch
- 코루틴 빌더
- JanusWebRTC
- python
- RouteLocator
Archives
너와 나의 스토리
[BOJ] 1321 군인 본문
반응형
문제: https://www.acmicpc.net/problem/1321
소스 코드:
#include <iostream>
#include <string.h>
#include <queue>
#include <vector>
#include <algorithm>
using namespace std;
int N,M,seg[500001*4];
int update(int pos, int val, int node, int x, int y) {
if (pos < x || y < pos) return seg[node];
if (x == y) return seg[node] += val;
int mid = (x + y) >> 1;
return seg[node] = update(pos, val, node * 2, x, mid) + update(pos, val, node * 2 + 1, mid + 1, y);
}
int query(int sol,int node, int x, int y) {
if (x==y) return x;
int mid = (x + y) >> 1;
if (sol <= seg[node * 2]) return query(sol, node * 2, x, mid);
return query(sol-seg[node*2], node * 2+1, mid+1, y);
}
// seg[node]로 위치 파악하고 싶은데 못 하겠다 다음에 하장...
int main()
{
ios::sync_with_stdio(false);
cin.tie(NULL), cout.tie(NULL);
cin >> N;
int a,b,c;
for (int i = 0; i < N; i++) {
cin >> a;
update(i, a, 1, 0, N - 1);
}
cin >> M;
while (M--) {
cin >> a;
if (a == 1) {
cin >> b>>c;
update(b - 1, c, 1, 0, N - 1);
}
else {
cin >> b;
cout << query(b,1,0,N-1)+1 << '\n';
}
}
return 0;
}
반응형
'Algorithm > 세그먼트 트리 (Segment Tree)' 카테고리의 다른 글
[BOJ] 1275 커피숍2 (0) | 2019.09.11 |
---|---|
[BOJ] 12837 가계부 (Hard) (0) | 2019.09.11 |
[BOJ] 2357 최솟값과 최댓값 (0) | 2019.09.10 |
(BOJ) 1849 순열 / 1777 순열복원 (0) | 2019.01.19 |
(BOJ) 5676 음주 코딩 (0) | 2019.01.19 |
Comments