티스토리 뷰
https://www.acmicpc.net/problem/10090
// https://www.acmicpc.net/problem/10090
// Counting Inversions
class Item {
constructor(public value = 0) {}
}
class SegmentTree {
private lg: number;
private sz: number;
private 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(A.value + B.value);
}
private update(value: number, item: Item): Item {
return new Item(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;
}
}
const input: string[] = require('fs').readFileSync('./dev/stdin').toString().trim().split('\n');
const N = +input[0]!;
const nums = input[1].split(' ');
const segmentTree = new SegmentTree(Array(N + 1).fill(0));
let answer = 0;
nums.forEach((num) => {
segmentTree.updatePoint(+num, 1);
answer += segmentTree.queryRange(+num + 1, N);
});
console.log(answer);
728x90
'자료구조 알고리즘 > 백준' 카테고리의 다른 글
TS) 백준 13459번: 구슬 탈출 (0) | 2024.03.04 |
---|---|
Node.js) 백준 10090번: Counting Inversions (0) | 2024.03.04 |
TS) 백준 1019번: 책 페이지 (0) | 2024.03.03 |
TS) 백준 1725번: 히스토그램 (0) | 2024.03.03 |
TS) 백준 15964번: 이상한 기호 (0) | 2024.03.03 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 개발자면접
- 투포인터 연습
- 다이나밍프로그래밍
- node.js
- 롱베케이션
- 로드나인
- create databases;
- DB 생성
- 면접질문
- MOD
- create db
- 면접비
- MySQL
- 투포인터
- 서버점검
- 최소공통조상
- 그래프
- BFS
- 은둔청년체험
- 서버개발
- 다이나믹프로그래밍
- 동적프로그래밍
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함