티스토리 뷰
https://www.acmicpc.net/problem/28099
// https://www.acmicpc.net/problem/28099
// 이상한 배열
class Item {
constructor(public value = 0) {}
}
class SegmentTree {
private lg: number;
private sz: number;
public 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]);
}
for (let i = this.sz - 1; i > 0; i--) {
this.tree[i] = this.merge(this.tree[i << 1], this.tree[(i << 1) | 1]);
// i << 1 은 왼쪽 자식 노드 i * 2
// (i << 1) | 1 은 오른쪽 자식 노드 i * 2 + 1
}
}
private merge(A: Item, B: Item): Item {
return new Item(Math.max(A.value, B.value));
}
private update(value: number, item: Item): Item {
return new Item(Math.max(item.value, value));
}
private apply(i: number, value: number) {
this.tree[i] = this.update(value, this.tree[i]);
}
private 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);
}
queryPoint(i: number) {
i = (i - 1) | this.sz;
return this.tree[i].value;
}
queryRange(l: number, r: number) {
let L = new Item();
let R = new Item();
l = (l - 1) | this.sz;
r = (r - 1) | this.sz;
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).value;
}
}
let index = 0;
const answer: string[] = [];
require('readline')
.createInterface({
input: process.stdin,
output: process.stdout,
})
.on('line', (line: string) => {
index++;
if (index == 1 || index % 2 == 0) return;
const nums = line.split(' ').map(Number);
const segmentTree = new SegmentTree(nums);
const se: Record<number, Array<number>> = {}; // 시작 과 끝의 인덱스를 보관
for (let j = 0; j < nums.length; j++) {
const num = nums[j];
if (!se[num]) se[num] = [j, -1];
else se[num][1] = j;
}
if (
Object.entries(se).some(
([target, [s, e]]) => e != -1 && Number(target) < segmentTree.queryRange(s + 1, e + 1)
)
) {
answer.push('No');
} else {
answer.push('Yes');
}
})
.on('close', () => {
console.log(answer.join('\n'));
process.exit();
});
728x90
'자료구조 알고리즘 > 백준' 카테고리의 다른 글
Node.js) 백준 2835번: 인기도 조사 (0) | 2024.03.07 |
---|---|
Node.js) 백준 8120번: Coding of Permutations (0) | 2024.03.07 |
Node.js) 백준 14725번: 개미굴 (0) | 2024.03.05 |
Node.js) 백준 2749번: 피보나치 수 3 (0) | 2024.03.05 |
TS) 백준 2243번: 사탕상자 (0) | 2024.03.05 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 은둔청년체험
- 로드나인
- create databases;
- MOD
- 다이나믹프로그래밍
- 서버점검
- DB 생성
- 면접질문
- 롱베케이션
- 다이나밍프로그래밍
- 투포인터
- MySQL
- 투포인터 연습
- 그래프
- 동적프로그래밍
- 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 |
글 보관함