티스토리 뷰
https://www.acmicpc.net/problem/2630
큐로 풀었음
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 Queue{
constructor(){
this.head = null;
this.tail = null;
this.length = 0;
}
push(item){
const node = new Node(item)
if(this.head===null){
this.head= node;
this.head.next = this.tail;
}else{
this.tail.next = node;
}
this.tail = node;
this.length +=1;
}
pop(){
const popItem = this.head;
this.head = this.head.next;
this.length -=1;
return popItem.item;
}
size(){
return this.length;
}
empty(){
if(this.length==0){
return 1;
}else{
return 0;
}
}
front(){
if(this.empty()==1) return -1;
return this.head.item;
}
back(){
if(this.empty()==1) return -1;
return this.tail.item;
}
}
let q=new Queue();
q.push([0,0,N]);
let answer= [0,0];
while(!q.empty()){
let [y,x,size] = q.pop();
let first = board[y][x];
let same = true;
for(let i = y; i<y+size; i++){
for(let j = x; j<x+size; j++){
if(board[i][j]!=first) {
same =false;
break;
}
}
if(!same)break;
}
if(same){
answer[first]++;
}else{
q.push([y,x,size/2])
q.push([y+size/2,x,size/2])
q.push([y,x+size/2,size/2])
q.push([y+size/2,x+size/2,size/2])
}
}
console.log(answer.join('\n'))
728x90
'자료구조 알고리즘 > 백준' 카테고리의 다른 글
Node.js) 백준 1780번 : 종이의 개수 (0) | 2021.09.14 |
---|---|
Node.js) 백준 1992번 : 쿼드트리 (0) | 2021.09.14 |
Node.js) 백준 5430번 : AC (0) | 2021.09.14 |
Node.js)백준 1021번 : 회전하는 큐 ★ (0) | 2021.09.13 |
Node.js) 백준 10866번 : 덱 (0) | 2021.09.13 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 롱베케이션
- 동적프로그래밍
- MOD
- BFS
- 은둔청년체험
- 투포인터 연습
- 최소공통조상
- 서버개발
- 면접비
- node.js
- 면접질문
- 다이나믹프로그래밍
- create db
- create databases;
- 투포인터
- 개발자면접
- 다이나밍프로그래밍
- 그래프
- MySQL
- 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 |
글 보관함