티스토리 뷰
https://www.acmicpc.net/problem/14427
//https://www.acmicpc.net/problem/14427
// 수열과 쿼리 15
// 최솟값의 인덱스
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() {
return this.tree[1].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());
});
console.log(answer.join('\n'));
728x90
'자료구조 알고리즘 > 백준' 카테고리의 다른 글
Node.js) 백준 5676번: 음주 코딩 (1) | 2024.02.27 |
---|---|
Node.js) 백준 12837번: 가계부 (Hard) (0) | 2024.02.27 |
Node.js) 백준 10999번: 구간 합 구하기 2 (0) | 2024.02.27 |
Node.js) 백준 2268번: 수들의 합 7 (1) | 2024.02.26 |
Node.js) 백준 2042번: 구간 합 구하기 (0) | 2024.02.26 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 면접질문
- 로드나인
- 투포인터 연습
- 그래프
- 은둔청년체험
- 다이나밍프로그래밍
- create db
- DB 생성
- MOD
- BFS
- 서버개발
- MySQL
- node.js
- 롱베케이션
- 최소공통조상
- 동적프로그래밍
- 개발자면접
- 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 | 29 | 30 |
글 보관함