관리 메뉴

너와 나의 스토리

[BOJ] 1321 군인 본문

Algorithm/세그먼트 트리 (Segment Tree)

[BOJ] 1321 군인

노는게제일좋아! 2019. 9. 10. 11:38
반응형

문제: 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