티스토리 뷰
https://www.acmicpc.net/problem/14428
//https://www.acmicpc.net/problem/14428
// 수열과 쿼리 16
// 최솟값의 인덱스
class Node {
constructor(value = Infinity, index = Infinity) {
this.value = value;
this.index = index;
}
}
class NonRecursiveSegmentTree {
constructor(inputArray) {
// build
const inputArrayLength = inputArray.length;
this.n = 2 ** Math.ceil(Math.log2(inputArrayLength));
this.tree = Array.from(new Array(2 * this.n), (v, k) => new Node());
for (let i = 0; i < inputArrayLength; i++) {
this.tree[this.n + i] = new Node(inputArray[i], this.n + i);
}
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) {
if (nodeA.value > nodeB.value) return nodeB;
else if (nodeA.value < nodeB.value) return nodeA;
else return new Node(nodeA.value, Math.min(nodeA.index, nodeB.index));
}
update(target, value) {
target += this.n;
this.tree[target] = new Node(value, target);
while (target > 1) {
this.tree[target >> 1] = this.merge(this.tree[target], this.tree[target ^ 1]);
target >>= 1;
}
}
// l <= x < r 구간에 대한 쿼리
query(l, r) {
let res = new Node();
l += this.n;
r += this.n;
for (; l < r; l >>= 1, r >>= 1) {
if (l & 1) res = this.merge(res, this.tree[l++]);
if (r & 1) res = this.merge(this.tree[--r], res);
}
return res.index - this.n + 1;
}
}
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 NonRecursiveSegmentTree(nums);
const answer = [];
input.forEach((query) => {
const [c, a, b] = query.split(' ').map(Number);
if (c == 1) segmentTree.update(a - 1, b);
else answer.push(segmentTree.query(a - 1, b));
});
console.log(answer.join('\n'));
728x90
'자료구조 알고리즘 > 백준' 카테고리의 다른 글
Node.js) 백준 12844번: XOR (0) | 2024.02.27 |
---|---|
Node.js) 백준 16975번: 수열과 쿼리 21 (1) | 2024.02.27 |
Node.js) 백준 5676번: 음주 코딩 (1) | 2024.02.27 |
Node.js) 백준 12837번: 가계부 (Hard) (0) | 2024.02.27 |
Node.js) 백준 11427번: 수열과 쿼리 15 (1) | 2024.02.27 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 서버개발
- node.js
- create databases;
- 동적프로그래밍
- DB 생성
- 면접질문
- 투포인터 연습
- 개발자면접
- 그래프
- 로드나인
- BFS
- 면접비
- 최소공통조상
- 롱베케이션
- MySQL
- 은둔청년체험
- 다이나밍프로그래밍
- create db
- 서버점검
- 투포인터
- 다이나믹프로그래밍
- MOD
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함