티스토리 뷰
https://www.acmicpc.net/problem/12354
const input = require('fs')
.readFileSync('./dev/stdin')
.toString()
.trim()
.split('\n')
.map((v) => v.split(' ').map(Number));
const [T] = input.shift();
const answer = [];
for (let t = 0; t < T; t++) {
const [N] = input.shift();
const house = input.shift();
const stack = [];
stack.push(house.shift());
let destroy = 0;
while (house.length > 0) {
const h = house.shift();
if (h > stack[stack.length - 1]) {
stack.push(h);
} else {
destroy++;
stack.pop();
stack.push(h);
}
}
answer.push(destroy);
}
console.log(answer.map((v, i) => `Case #${i + 1}: ${v}`).join('\n'));
728x90
'자료구조 알고리즘 > 백준' 카테고리의 다른 글
Node.js) 백준 28703번: Double It (0) | 2023.08.13 |
---|---|
Node.js) 백준 28437번: 막대 만들기 (0) | 2023.08.13 |
Node.js) 백준 25644번: 최대 상승 (0) | 2023.08.12 |
Node.js) 백준 19947번: 투자의 귀재 배주형 (0) | 2023.08.12 |
Node.js) 백준 14606번: 피자 (Small) (0) | 2023.08.12 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 개발자면접
- MySQL
- 그래프
- 동적프로그래밍
- node.js
- 로드나인
- 은둔청년체험
- BFS
- 서버개발
- 면접질문
- 투포인터
- 롱베케이션
- DB 생성
- 최소공통조상
- 서버점검
- MOD
- 다이나밍프로그래밍
- 면접비
- create db
- 투포인터 연습
- 다이나믹프로그래밍
- create databases;
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함