티스토리 뷰
https://www.acmicpc.net/problem/2042
습관적으로 입력값을 Number형으로 바꾸고 시작해서 엄청 틀렸다.
트리 안에서만 BigInt 처리했는데,, 입력값에도 큰 수가 들어올 수 있기 때문에 입력받을 때부터 신경써줘야 한다. 트리에 값을 넣을 때부터.
입력값을 처리할 때 String을 Number로 바꾸는 로직을 빼니까 해결되었다.
//https://www.acmicpc.net/problem/2042
// 구간 합 구하기
// 비재귀 세그먼트 트리 구현
class NonRecursiveSegmentTree {
constructor(inputArray) {
// build
const inputArrayLength = inputArray.length;
const segmentTreeArrayLength = this.isPowerOfTwo(inputArrayLength)
? inputArrayLength
: 2 ** (Math.floor(Math.log2(inputArrayLength)) + 1);
this.n = segmentTreeArrayLength;
this.tree = new Array(2 * this.n).fill(BigInt(0));
for (let i = 0; i < inputArrayLength; i++) {
this.tree[this.n + i] = BigInt(inputArray[i]);
}
for (let i = this.n - 1; i > 0; --i) {
this.tree[i] = this.tree[i << 1] + this.tree[(i << 1) | 1];
}
}
isPowerOfTwo(number) {
if (number < 1) return false;
while (number != 1) {
if (number % 2 !== 0) return false;
number /= 2;
}
return true;
}
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 nums = input.splice(0, N);
const segmentTree = new NonRecursiveSegmentTree(nums);
const answer = [];
input.forEach((cmd) => {
const [c, a, b] = cmd.split(' ');
if (c == '1') segmentTree.update(Number(a) - 1, BigInt(b));
else answer.push(segmentTree.query(Number(a) - 1, Number(b)));
});
console.log(answer.join('\n'));
728x90
'자료구조 알고리즘 > 백준' 카테고리의 다른 글
Node.js) 백준 10999번: 구간 합 구하기 2 (0) | 2024.02.27 |
---|---|
Node.js) 백준 2268번: 수들의 합 7 (1) | 2024.02.26 |
Node.js) 백준 14438번: 수열과 쿼리 17 (1) | 2024.02.26 |
Node.js) 백준 1275번: 커피숍2 (1) | 2024.02.26 |
Node.js) 백준 11505번: 구간 곱 구하기 (0) | 2024.02.26 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 동적프로그래밍
- DB 생성
- MySQL
- 최소공통조상
- 서버개발
- 그래프
- 면접비
- 투포인터
- 개발자면접
- 면접질문
- 다이나믹프로그래밍
- 투포인터 연습
- node.js
- 서버점검
- BFS
- create databases;
- MOD
- 롱베케이션
- 로드나인
- 다이나밍프로그래밍
- create 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 | 31 |
글 보관함