티스토리 뷰
https://www.acmicpc.net/problem/2243
// https://www.acmicpc.net/problem/2243
// 사탕상자
class Item {
constructor(public value = 0) {}
}
class SegmentTree {
protected lg: number;
protected sz: number;
protected tree: Array<Item>;
constructor(inputArray: Array<number>) {
const inputArrayLength = inputArray.length;
this.lg = Math.ceil(Math.log2(inputArrayLength));
this.sz = 1 << this.lg;
this.tree = Array.from(new Array(this.sz << 1), () => new Item());
for (let i = 1; i <= inputArrayLength; i++) {
this.tree[(i - 1) | this.sz] = new Item(inputArray[i - 1]);
}
}
protected merge(A: Item, B: Item): Item {
return new Item(A.value + B.value);
}
protected update(value: number, item: Item): Item {
return new Item(item.value + value);
}
protected apply(i: number, value: number) {
this.tree[i] = this.update(value, this.tree[i]);
}
protected pull(i: number) {
this.tree[i] = this.merge(this.tree[i << 1], this.tree[(i << 1) | 1]);
}
public updatePoint(i: number, value: number) {
i = (i - 1) | this.sz;
this.apply(i, value);
for (let j = 1; j <= this.lg; j++) this.pull(i >> j);
}
}
class CandyBox extends SegmentTree {
constructor() {
super(new Array(1_000_000 + 1).fill(0));
}
public find(rank: number) {
let node = 1;
while (node < this.sz) {
let left = this.tree[node << 1].value;
if (left >= rank) {
node = node << 1;
} else {
node = (node << 1) | 1;
rank -= left;
}
}
return node + 1 - this.sz;
}
}
const candyBox = new CandyBox();
const answer: number[] = [];
let N: number;
const readline = require('readline').createInterface({
input: process.stdin,
output: process.stdout,
});
readline.on('line', (line: string) => {
if (!N) {
N = +line;
} else {
if (N == 0) return;
N--;
const [c, ...arg] = line.split(' ').map(Number);
switch (c) {
case 1:
const result = candyBox.find(arg[0]);
candyBox.updatePoint(result, -1);
answer.push(result);
break;
case 2:
candyBox.updatePoint(arg[0], arg[1]);
break;
}
}
}).on('close', () => {
console.log(answer.join('\n'));
process.exit();
});
728x90
'자료구조 알고리즘 > 백준' 카테고리의 다른 글
Node.js) 백준 14725번: 개미굴 (0) | 2024.03.05 |
---|---|
Node.js) 백준 2749번: 피보나치 수 3 (0) | 2024.03.05 |
Node.js) 백준 3653번: 영화 수집 (0) | 2024.03.04 |
TS) 백준 3653번: 영화 수집 (0) | 2024.03.04 |
TS) 백준 1517번: 버블 소트 (0) | 2024.03.04 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- MOD
- 은둔청년체험
- DB 생성
- 로드나인
- MySQL
- 투포인터 연습
- 개발자면접
- 롱베케이션
- 최소공통조상
- create databases;
- 면접비
- BFS
- 투포인터
- 다이나믹프로그래밍
- 동적프로그래밍
- 서버개발
- 다이나밍프로그래밍
- 면접질문
- node.js
- 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 |
글 보관함