티스토리 뷰
https://www.acmicpc.net/problem/16120
class Alphabet {
constructor(value) {
this.value = value;
this.prev = null;
}
}
class PPAP {
constructor(str) {
this.str = str;
this.run();
this.top = null;
}
run() {
for (let i = 0; i < this.str.length; i++) {
const alpha = this.str[i];
if (alpha == 'P' && this.checkPPA()) {
this.popPA();
} else {
this.push(alpha);
}
}
}
push(alpha) {
const poa = new Alphabet(alpha);
poa.prev = this.top;
this.top = poa;
}
popPA() {
this.top = this.top.prev.prev;
}
checkPPA() {
if (!this.top) return false;
if (this.top.value == 'P') return false;
if (!this.top.prev) return false;
if (this.top.prev.value == 'A') return false;
if (!this.top.prev.prev) return false;
if (this.top.prev.prev.value == 'A') return false;
return true;
}
getResult() {
let result = '';
while (this.top != null) {
result = this.top.value + result;
this.top = this.top.prev;
}
if (result == 'PPAP' || result == 'P') {
return 'PPAP';
} else {
return 'NP';
}
}
printResult() {
console.log(this.getResult());
}
}
const input = require('fs').readFileSync('./dev/stdin').toString().trim();
const ppap = new PPAP(input);
ppap.run();
ppap.printResult();
728x90
'자료구조 알고리즘 > 백준' 카테고리의 다른 글
Node.js) 백준 3078번: 좋은 친구 (0) | 2023.11.14 |
---|---|
Node.js) 백준 10216번: Count Circle Goups (0) | 2023.11.10 |
Node.js) 백준 13975번: 파일합치기 3 (1) | 2023.11.09 |
Node.js) 백준 16562번: 친구비 (1) | 2023.11.09 |
Node.js) 백준 20040번: 사이클 게임 (0) | 2023.11.07 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 다이나믹프로그래밍
- create databases;
- 면접질문
- 다이나밍프로그래밍
- 서버점검
- 로드나인
- MySQL
- DB 생성
- 동적프로그래밍
- 개발자면접
- 롱베케이션
- create db
- 서버개발
- MOD
- 투포인터
- BFS
- 그래프
- node.js
- 최소공통조상
- 면접비
- 은둔청년체험
- 투포인터 연습
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함