티스토리 뷰
https://www.acmicpc.net/problem/6549
백준 플레티넘 문제 중에서 제일 푼 사람이 많은 문제다.
혼자 풀 수 있을 것 같은 느낌이 들어서 낑낑거리다가
최근에 다시 보니까 풀이방법이 떠올라서 도전했다가 간신히 풀었다. 알게 모르게 성장중인듯^^
class Item {
prev: null | Item = null;
constructor(public value: any) {}
}
class Stack {
top: null | Item = null;
size = 0;
constructor() {}
push(value: any) {
const node = new Item(value);
node.prev = this.top;
this.top = node;
this.size += 1;
}
pop() {
if (this.top) {
const popItem = this.top;
this.top = this.top.prev;
this.size -= 1;
return popItem.value;
} else return null;
}
peek() {
return this.top ? this.top.value : null;
}
isEmpty() {
return this.size == 0;
}
}
const input: string[] = require('fs').readFileSync('./dev/stdin').toString().trim().split('\n');
input.pop();
const answer: string[] = [];
input.map((v) => v.split(' ').map(BigInt)).forEach((arr) => {
arr.shift();
let max: bigint = BigInt(0);
const st = new Stack();
for(let i = 0; i<arr.length; i++){
const v = arr[i];
if(st.isEmpty()){
if(v>max) max = v;
st.push({ h: v, w: BigInt(1) });
}else{
if(v>max) max = v;
let sz = BigInt(0);
while(!st.isEmpty() && st.peek().h>v){
sz = sz == BigInt(0) ? st.peek().w : sz+ st.peek().w
const possible = st.pop().h * sz;
if(possible>max) max = possible;
}
if(st.isEmpty() || st.peek().h<v){
st.push({ h: v, w: sz+BigInt(1) });
}else if(st.peek().h==v){
st.peek().w += sz+BigInt(1);
}
}
}
let sz = BigInt(0);
while (!st.isEmpty()) {
sz = sz == BigInt(0) ? st.peek().w : sz+ st.peek().w
const possible = st.pop().h * sz;
if (possible > max) max = possible;
}
answer.push(max.toString());
});
console.log(answer.join('\n'));
728x90
'자료구조 알고리즘 > 백준' 카테고리의 다른 글
TS) 백준 1725번: 히스토그램 (0) | 2024.03.03 |
---|---|
TS) 백준 15964번: 이상한 기호 (0) | 2024.03.03 |
TS) 백준 7662번: 이중 우선순위 큐 (0) | 2024.03.01 |
TS) 백준 15806번: 영우의 기숙사 청소 (1) | 2024.02.29 |
TS) 백준 1385번: 벌집 (2) | 2024.02.28 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 서버점검
- node.js
- 롱베케이션
- MySQL
- 개발자면접
- 면접질문
- 다이나밍프로그래밍
- 동적프로그래밍
- 다이나믹프로그래밍
- 투포인터 연습
- BFS
- MOD
- 그래프
- 로드나인
- 최소공통조상
- 면접비
- 투포인터
- create databases;
- DB 생성
- 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 |
글 보관함