티스토리 뷰
https://www.acmicpc.net/problem/2667
하나의 집으로 이루어진 단지도 고려해야함.
input
2
10
01
answer
2
1
1
const fs = require('fs');
const [n,...arr] = fs.readFileSync("./dev/stdin").toString().trim().split("\n");
const N = +n;
const house = arr.map(v=>[...v.split(''),0].map(w=>+w));
house.push(new Array(N+1).fill(0))
const edge = [];
for(let y = 0; y<N; y++){
for(let x =0; x<N; x++){
let now = N*y+x;
if(house[y][x]==1){
if(house[y][x+1]==1){
edge.push([now,now+1])
}
if(house[y+1][x]==1){
edge.push([now,now+N])
}
if(house[y][x+1]==0 && house[y+1][x]==0){
edge.push([now,now])
}
}
}
}
let answer = [];
let marked= [];
let adj = [];
for(let i =0; i<(N+1)*(N+1); i++){
marked[i] = true;
adj[i] = [];
}
edge.forEach(v=>{
adj[v[0]].push(v[1])
adj[v[1]].push(v[0])
marked[v[0]] = false;
marked[v[1]] = false;
})
function bfs(s){
let q = [];
marked[s] = true;
q.push(s);
let result =1;
while(q.length>0){
let v =q.shift();
adj[v].forEach(w=>{
if(!marked[w]){
marked[w]=true;
result++;
q.push(w)
}
})
}
return result;
}
function check(){
for(let i = 0; i<marked.length; i++){
if(marked[i]==false) return i
}
return -1;
}
let flag = check()
while(flag>-1){
answer.push(bfs(flag));
flag=check();
}
console.log(answer.length+'\n'+answer.sort((a,b)=>a-b).join('\n'))
728x90
'자료구조 알고리즘 > 백준' 카테고리의 다른 글
Node.js) 백준 7576번 : 토마토 (+ 백준 Node.js 시간 초과 팁) (0) | 2021.09.16 |
---|---|
Node.js) 백준 1012번 : 유기농 배추 (0) | 2021.09.16 |
Node.js) 백준 2606번 : 바이러스 (0) | 2021.09.16 |
Node.js)백준 1260번 : DFS와 BFS (0) | 2021.09.16 |
Node.js) 백준 11286번 : 절댓값 힙 (0) | 2021.09.16 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 면접비
- create db
- 은둔청년체험
- 다이나믹프로그래밍
- 개발자면접
- DB 생성
- 동적프로그래밍
- 그래프
- 서버점검
- 투포인터 연습
- 면접질문
- 최소공통조상
- 투포인터
- node.js
- 서버개발
- 다이나밍프로그래밍
- create databases;
- 롱베케이션
- 로드나인
- MySQL
- BFS
- MOD
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함