티스토리 뷰
https://www.acmicpc.net/problem/10999
//https://www.acmicpc.net/problem/10999
// 구간 합 구하기 2
// 느리게 갱신되는 세그먼트 트리의 비재귀 구현
class Node {
constructor(value = BigInt(0), size = 0) {
this.value = value;
this.size = size;
}
}
class NonRecursiveSegmentTreeWithLazyPropagation {
constructor(inputArray) {
// build segment tree
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();
});
this.lazy = new Array(this.size).fill(BigInt(0));
//segemnt tree initial setting
for (let i = 1; i <= inputArrayLength; i++) {
this.tree[(i - 1) | this.size] = new Node(inputArray[i - 1], 1);
}
for (let i = this.size - 1; i > 0; i--) {
this.tree[i] = this.merge(this.tree[i << 1], this.tree[(i << 1) | 1]);
}
}
updatePoint(i, value) {
i = (i - 1) | this.size;
for (let j = this.lg; j > 0; j--) this.push(i >> j);
this.apply(i, value);
for (let j = 1; j <= this.lg; j++) this.pull(i >> j);
}
queryPoint(i) {
i = (i - 1) | this.size;
for (let j = this.lg; j > 0; j--) this.push(i >> j);
return this.tree[i];
}
updateRange(l, r, value) {
l = (l - 1) | this.size;
r = (r - 1) | this.size;
for (let i = this.lg; i > 0; i--) {
if ((l >> i) << i != l) this.push(l >> i);
if (((r + 1) >> i) << i != r + 1) this.push(r >> i);
}
for (let L = l, R = r; L <= R; L >>= 1, R >>= 1) {
if (L & 1) this.apply(L++, value);
if (~R & 1) this.apply(R--, value);
}
for (let i = 1; i <= this.lg; i++) {
if ((l >> i) << i != l) this.pull(l >> i);
if (((r + 1) >> i) << i != r + 1) this.pull(r >> i);
}
}
queryRange(l, r) {
let L = new Node();
let R = new Node();
l = (l - 1) | this.size;
r = (r - 1) | this.size;
for (let i = this.lg; i > 0; i--) {
if ((l >> i) << i != l) this.push(l >> i);
if (((r + 1) >> i) << i != r + 1) this.push(r >> i);
}
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);
}
apply(i, value) {
this.tree[i] = this.update(value, this.tree[i]);
if (i < this.size) this.lazy[i] = this.compose(value, this.lazy[i]);
}
push(i) {
this.apply(i << 1, this.lazy[i]);
this.apply((i << 1) | 1, this.lazy[i]);
this.lazy[i] = 0;
}
pull(i) {
this.tree[i] = this.merge(this.tree[i << 1], this.tree[(i << 1) | 1]);
}
// 이게.. 매번 수정해줘야 하는 함수
merge(a, b) {
return new Node(a.value + b.value, a.size + b.size);
}
update(lazy, node) {
return new Node(BigInt(node.value) + BigInt(lazy) * BigInt(node.size), node.size);
}
compose(a, b) {
return BigInt(a) + BigInt(b);
}
}
const input = require('fs').readFileSync('./dev/stdin').toString().trim().split('\n');
const N = +input.shift().split(' ')[0];
const nums = input.splice(0, N);
const segmenttree = new NonRecursiveSegmentTreeWithLazyPropagation(nums.map((v) => BigInt(v)));
const answer = [];
input.forEach((cmd) => {
const [c, ...arg] = cmd.split(' ');
if (c == '1') {
const [b, c, d] = arg;
segmenttree.updateRange(+b, +c, BigInt(d));
} else {
const [b, c] = arg;
answer.push(segmenttree.queryRange(+b, +c).value);
}
});
console.log(answer.join('\n'));
728x90
'자료구조 알고리즘 > 백준' 카테고리의 다른 글
Node.js) 백준 12837번: 가계부 (Hard) (0) | 2024.02.27 |
---|---|
Node.js) 백준 11427번: 수열과 쿼리 15 (1) | 2024.02.27 |
Node.js) 백준 2268번: 수들의 합 7 (1) | 2024.02.26 |
Node.js) 백준 2042번: 구간 합 구하기 (0) | 2024.02.26 |
Node.js) 백준 14438번: 수열과 쿼리 17 (1) | 2024.02.26 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 로드나인
- 면접비
- 투포인터 연습
- 은둔청년체험
- MOD
- node.js
- 투포인터
- 면접질문
- 서버개발
- 개발자면접
- 그래프
- MySQL
- BFS
- 최소공통조상
- DB 생성
- 다이나밍프로그래밍
- 다이나믹프로그래밍
- 동적프로그래밍
- 서버점검
- 롱베케이션
- create db
- create databases;
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함