티스토리 뷰
https://www.acmicpc.net/problem/12837
//https://www.acmicpc.net/problem/12837
// 가계부 (Hard)
// 구간 합
class Node {
constructor(value = 0) {
this.value = BigInt(value);
}
}
class NonRecursiveSegmentTree {
constructor(inputArray) {
// build
const inputArrayLength = inputArray.length;
this.lg = Math.ceil(Math.log2(inputArrayLength));
this.size = 1 << this.lg;
this.tree = Array.from(new Array(this.size << 1), () => {
return new Node();
});
//segemnt tree initial setting
for (let i = 1; i <= inputArrayLength; i++) {
this.tree[(i - 1) | this.size] = new Node(inputArray[i - 1]);
}
for (let i = this.n - 1; i > 0; --i) {
this.tree[i] = this.merge(this.tree[i << 1], this.tree[(i << 1) | 1]);
}
}
merge(nodeA, nodeB) {
return new Node(nodeA.value + nodeB.value);
}
update(i, value) {
i = (i - 1) | this.size;
const newValue = new Node(value);
this.tree[i] = this.merge(this.tree[i], newValue);
for (let j = 1; j <= this.lg; j++) {
const k = i >> j;
this.tree[k] = this.merge(this.tree[k << 1], this.tree[(k << 1) | 1]);
}
}
// l <= x < r 구간에 대한 쿼리
query(l, r) {
let L = new Node();
let R = new Node();
l = (l - 1) | this.size;
r = (r - 1) | this.size;
for (; l <= r; l >>= 1, r >>= 1) {
if (l & 1) L = this.merge(L, this.tree[l++]);
if (~r & 1) R = this.merge(this.tree[r--], R);
}
return this.merge(L, R);
}
}
const input = require('fs').readFileSync('./dev/stdin').toString().trim().split('\n');
const [N, Q] = input.shift().split(' ');
const arr = new Array(+N).fill(0);
const segmentTree = new NonRecursiveSegmentTree(arr);
const answer = [];
input.forEach((query) => {
const [c, a, b] = query.split(' ').map(Number);
if (c == 1) segmentTree.update(a, b);
else answer.push(segmentTree.query(a, b).value);
});
console.log(answer.join('\n'));
728x90
'자료구조 알고리즘 > 백준' 카테고리의 다른 글
Node.js) 백준 14428번: 수열과 쿼리 16 (1) | 2024.02.27 |
---|---|
Node.js) 백준 5676번: 음주 코딩 (1) | 2024.02.27 |
Node.js) 백준 11427번: 수열과 쿼리 15 (1) | 2024.02.27 |
Node.js) 백준 10999번: 구간 합 구하기 2 (0) | 2024.02.27 |
Node.js) 백준 2268번: 수들의 합 7 (1) | 2024.02.26 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 개발자면접
- 다이나믹프로그래밍
- 투포인터
- MOD
- BFS
- 면접비
- create databases;
- node.js
- MySQL
- 최소공통조상
- 다이나밍프로그래밍
- 그래프
- 은둔청년체험
- 서버점검
- 로드나인
- 롱베케이션
- 동적프로그래밍
- 서버개발
- 투포인터 연습
- create db
- 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 |
글 보관함