티스토리 뷰
https://www.acmicpc.net/problem/1992
스택으로 풀었음.
const fs = require('fs');
const [n,...arr] = fs.readFileSync("./dev/stdin").toString().trim().split("\n");
const N = +n
const board = arr.map(v=>v.split('').map(v=>+v))
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;
}
}
let answer =''
let stack = new Stack();
stack.push([0,0,N])
while(!stack.empty()){
let temp = stack.pop();
if(temp=='left') {
answer='('+answer
}
else if(temp=='right') {
answer=')'+answer;
}
else{
const [y,x,n] = temp;
let same = true;
let first = board[y][x];
for(let i = y; i<y+n; i++ ){
for(let j = x; j<x+n; j++ ){
if(board[i][j]!=first){
same=false;
break;
}
}
if(!same)break;
}
if(same)answer=first+answer;
else{
stack.push('left')
stack.push([y,x,n/2])
stack.push([y,x+n/2,n/2])
stack.push([y+n/2,x,n/2])
stack.push([y+n/2,x+n/2,n/2])
stack.push('right')
}
}
}
console.log(answer)
728x90
'자료구조 알고리즘 > 백준' 카테고리의 다른 글
Node.js) 백준 1920번 : 수 찾기 (0) | 2021.09.14 |
---|---|
Node.js) 백준 1780번 : 종이의 개수 (0) | 2021.09.14 |
Node.js) 백준 2630번 : 색종이 만들기 (0) | 2021.09.14 |
Node.js) 백준 5430번 : AC (0) | 2021.09.14 |
Node.js)백준 1021번 : 회전하는 큐 ★ (0) | 2021.09.13 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- MOD
- 투포인터 연습
- 서버개발
- 그래프
- 최소공통조상
- 다이나믹프로그래밍
- 개발자면접
- create databases;
- 로드나인
- 서버점검
- 면접질문
- MySQL
- 투포인터
- create db
- 은둔청년체험
- node.js
- 롱베케이션
- 면접비
- BFS
- 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 |
글 보관함