티스토리 뷰
https://www.acmicpc.net/problem/2268
//https://www.acmicpc.net/problem/2268
// 수들의 합 7
// 비재귀 세그먼트 트리 구현
class NonRecursiveSegmentTree {
constructor(N) {
this.n = 2 ** Math.ceil(Math.log2(N));
this.tree = new Array(2 * this.n).fill(BigInt(0));
}
update(target, value) {
target += this.n;
this.tree[target] = BigInt(value);
while (target > 1) {
this.tree[target >> 1] = this.tree[target] + this.tree[target ^ 1];
target >>= 1;
}
}
// l <= x < r 구간에 대한 쿼리
query(l, r) {
let res = BigInt(0);
l += this.n;
r += this.n;
for (; l < r; l >>= 1, r >>= 1) {
if (l & 1) res += this.tree[l++];
if (r & 1) res += this.tree[--r];
}
return res;
}
}
const input = require('fs').readFileSync('./dev/stdin').toString().trim().split('\n');
const N = +input.shift().split(' ')[0];
const segmentTree = new NonRecursiveSegmentTree(N + 1);
const answer = [];
input.forEach((cmd) => {
let [c, i, j] = cmd.split(' ').map(Number);
if (c == 1) segmentTree.update(i - 1, j);
else {
if (i > j) {
const temp = i;
i = j;
j = temp;
}
answer.push(segmentTree.query(i - 1, j));
}
});
console.log(answer.join('\n'));
728x90
'자료구조 알고리즘 > 백준' 카테고리의 다른 글
Node.js) 백준 11427번: 수열과 쿼리 15 (1) | 2024.02.27 |
---|---|
Node.js) 백준 10999번: 구간 합 구하기 2 (0) | 2024.02.27 |
Node.js) 백준 2042번: 구간 합 구하기 (0) | 2024.02.26 |
Node.js) 백준 14438번: 수열과 쿼리 17 (1) | 2024.02.26 |
Node.js) 백준 1275번: 커피숍2 (1) | 2024.02.26 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 최소공통조상
- MOD
- BFS
- 서버점검
- 개발자면접
- node.js
- 서버개발
- 면접질문
- 면접비
- create db
- 다이나믹프로그래밍
- MySQL
- 은둔청년체험
- 롱베케이션
- 로드나인
- 다이나밍프로그래밍
- 동적프로그래밍
- 그래프
- create databases;
- 투포인터 연습
- 투포인터
- DB 생성
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함