티스토리 뷰
https://www.acmicpc.net/problem/16975
//https://www.acmicpc.net/problem/16975
// 수열과 쿼리 21
// 구간 합
// 느리게 갱신되는 세그먼트 트리의 비재귀 구현
class Node {
constructor(value = 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(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(node.value + lazy * node.size, node.size);
}
compose(a, b) {
return a + b;
}
}
const input = require('fs').readFileSync('./dev/stdin').toString().trim().split('\n');
input.shift();
const nums = input.shift().split(' ').map(Number);
input.shift();
const segmentTree = new NonRecursiveSegmentTreeWithLazyPropagation(nums);
const answer = [];
input.forEach((query) => {
const [c, ...arg] = query.split(' ').map(Number);
if (c == 1) {
const [i, j, k] = arg;
segmentTree.updateRange(i, j, k);
} else {
const [x] = arg;
answer.push(segmentTree.queryPoint(x).value);
}
});
console.log(answer.join('\n'));
728x90
'자료구조 알고리즘 > 백준' 카테고리의 다른 글
Node.js) 백준 1395번: 스위치 (0) | 2024.02.28 |
---|---|
Node.js) 백준 12844번: XOR (0) | 2024.02.27 |
Node.js) 백준 14428번: 수열과 쿼리 16 (1) | 2024.02.27 |
Node.js) 백준 5676번: 음주 코딩 (1) | 2024.02.27 |
Node.js) 백준 12837번: 가계부 (Hard) (0) | 2024.02.27 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 투포인터 연습
- 그래프
- 로드나인
- 동적프로그래밍
- 투포인터
- 롱베케이션
- 면접비
- 은둔청년체험
- 개발자면접
- 다이나밍프로그래밍
- MOD
- 서버개발
- 다이나믹프로그래밍
- DB 생성
- create db
- create databases;
- node.js
- MySQL
- 면접질문
- 서버점검
- 최소공통조상
- BFS
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함