티스토리 뷰
https://www.acmicpc.net/problem/2357
//https://www.acmicpc.net/problem/2357
// 비재귀 세그먼트 트리 구현
// 최솟값과 최댓값
class NonRecursiveSegmentTree {
constructor(inputArray) {
// build
const inputArrayLength = inputArray.length;
const segmentTreeArrayLength = 2 ** Math.ceil(Math.log2(inputArrayLength));
this.n = segmentTreeArrayLength;
this.tree = new Array(2 * this.n).fill(BigInt(0));
for (let i = 0; i < inputArrayLength; i++) {
this.tree[this.n + i] = { min: inputArray[i], max: inputArray[i] };
}
for (let i = this.n - 1; i > 0; --i) {
this.tree[i] = {
min: Math.min(this.tree[i << 1].min, this.tree[(i << 1) | 1].min),
max: Math.max(this.tree[i << 1].max, this.tree[(i << 1) | 1].max),
};
}
}
isPowerOfTwo(number) {
if (number < 1) return false;
while (number != 1) {
if (number % 2 !== 0) return false;
number /= 2;
}
return true;
}
// l <= x < r 구간에 대한 쿼리
query(l, r) {
let res = { min: Infinity, max: -Infinity };
l += this.n;
r += this.n;
for (; l < r; l >>= 1, r >>= 1) {
if (l & 1) {
res.min = Math.min(res.min, this.tree[l].min);
res.max = Math.max(res.max, this.tree[l].max);
l++;
}
if (r & 1) {
--r;
res.min = Math.min(res.min, this.tree[r].min);
res.max = Math.max(res.max, this.tree[r].max);
}
}
return res;
}
}
const input = require('fs').readFileSync('./dev/stdin').toString().trim().split('\n');
const [N, K] = input.shift().split(' ').map(Number);
const nums = input.splice(0, N).map(Number);
const segmentTree = new NonRecursiveSegmentTree(nums);
const answer = [];
input.forEach((query) => {
const [a, b] = query.split(' ').map(Number);
const { min, max } = segmentTree.query(a - 1, b);
answer.push(`${min} ${max}`);
});
console.log(answer.join('\n'));
728x90
'자료구조 알고리즘 > 백준' 카테고리의 다른 글
Node.js) 백준 1275번: 커피숍2 (1) | 2024.02.26 |
---|---|
Node.js) 백준 11505번: 구간 곱 구하기 (0) | 2024.02.26 |
Node.js) 백준 1918번: 후위 표기식 (0) | 2024.02.25 |
Node.js) 백준 1655번: 가운데를 말해요 (0) | 2024.02.25 |
Node.js) 백준 24524번 : 아름다운 문자열 (0) | 2024.02.14 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 동적프로그래밍
- 다이나밍프로그래밍
- 그래프
- 최소공통조상
- 은둔청년체험
- MOD
- 면접비
- 투포인터
- 롱베케이션
- BFS
- DB 생성
- 개발자면접
- node.js
- 로드나인
- 서버개발
- 다이나믹프로그래밍
- create db
- 서버점검
- 면접질문
- create databases;
- 투포인터 연습
- MySQL
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함