티스토리 뷰
https://www.acmicpc.net/problem/17298
const fs = require('fs');
const [n,arr] = fs.readFileSync("./dev/stdin").toString().trim().split("\n");
class Node{
constructor(item){
this.item = item;
this.next = null;
}
}
class Stack{
constructor(){
this.topOfStack = null;
this.length = 0;
}
push(item){
const node = new Node(item);
if(this.topOfStack!=null){
node.next = this.topOfStack;
}
this.topOfStack = node;
this.length+=1;
}
pop(){
if(this.length==0)return -1;
const popItem = this.topOfStack;
this.topOfStack = popItem.next;
this.length-=1;
return popItem.item
}
size(){
return this.length;
}
empty(){
if(this.length==0) return 1;
else return 0;
}
top(){
if(this.length==0)return -1;
return this.topOfStack.item;
}
}
const N = +n;
const nums = arr.split(' ').map(v=>+v);
let answer = new Array(N).fill(0);
let stack = new Stack();
for(let i = N-1; i>-1; i--){
while(answer[i]==0){
if(stack.size()==0){
answer[i]=-1;
stack.push(nums[i])
}else{
if(stack.top()<=nums[i]){
stack.pop();
}else{
answer[i]=stack.top();
stack.push(nums[i])
}
}
}
}
console.log(answer.join(' '))
한시간 동안 고민했는데, 안 떠올라서 구글링함^^
https://cocoon1787.tistory.com/347
여기 설명이 아주 잘 되어있음...
728x90
'자료구조 알고리즘 > 백준' 카테고리의 다른 글
Node.js) 백준 11866번 : 요세푸스 문제 0 (0) | 2021.09.13 |
---|---|
Node.js) 백준 18258번 : 큐 2 (0) | 2021.09.13 |
Node.js) 백준 1874번 : 스택 수열 (0) | 2021.09.13 |
Node.js) 백준 4949번 : 균형 잡힌 세상 (0) | 2021.09.13 |
Node.js) 백준 9012번 : 괄호 (0) | 2021.09.13 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 다이나믹프로그래밍
- DB 생성
- 다이나밍프로그래밍
- MySQL
- 로드나인
- 면접비
- 투포인터
- BFS
- 서버점검
- MOD
- 개발자면접
- node.js
- create databases;
- 최소공통조상
- 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 |
글 보관함