개미의 개열시미 프로그래밍

[알고리즘] 백준2667 단지 번호 붙이기 - 자바 본문

알고리즘/DFS, BFS, 백트래킹

[알고리즘] 백준2667 단지 번호 붙이기 - 자바

YunHyeok 2022. 1. 27. 02:08
728x90
반응형

https://www.acmicpc.net/problem/2667

 

2667번: 단지번호붙이기

<그림 1>과 같이 정사각형 모양의 지도가 있다. 1은 집이 있는 곳을, 0은 집이 없는 곳을 나타낸다. 철수는 이 지도를 가지고 연결된 집의 모임인 단지를 정의하고, 단지에 번호를 붙이려 한다. 여

www.acmicpc.net

 

 

 

[풀이 코드]

import java.io.IOException;
import java.util.ArrayList;
import java.util.Collections;
import java.util.LinkedList;
import java.util.Queue;
import java.util.Scanner;

public class Main {
	static int N;
	static int[][] graph;
	static boolean[][] visited;
	static int hCnt = 0;
	static int[] dy = {-1, 1, 0, 0};
	static int[] dx = {0, 0, -1, 1};
	static ArrayList<Integer> cntList;
	
	static int bfs(int i, int j) {
		Queue<int[]> q = new LinkedList<>();
		q.offer(new int[] {i, j});
		int cnt = 1;
		visited[i][j] = true;
		
		while(!q.isEmpty()) {
			int y = q.peek()[0];
			int x = q.peek()[1];
			q.poll();
			
			for(int l=0; l<4; l++) {
				int yy = dy[l] + y;
				int xx = dx[l] + x;
				if(yy >= 0 && yy < N && xx >= 0 && xx <N) {
					if(!visited[yy][xx] && graph[yy][xx] == 1) {
						cnt++;
						q.offer(new int[] {yy, xx});
						visited[yy][xx] = true;
					}
				}
			}
		}
		return cnt;
	}
	public static void main(String[] args) throws IOException {
		// TODO Auto-generated method stub
		Scanner sc = new Scanner(System.in);
		N = sc.nextInt();
		graph = new int[N][N];
		visited = new boolean[N][N];
		
		String str;
		for(int i=0; i<N; i++) {
			str = sc.next();
			for(int j=0; j<N; j++) {
				graph[i][j] = str.charAt(j) - '0';
			}
		}
		
		cntList = new ArrayList<>();
		for(int i=0; i<N; i++) {
			for(int j=0; j<N; j++) {
				if(graph[i][j] == 1 && !visited[i][j]) {
					cntList.add(bfs(i,j));
				}
			}
		}
		
		System.out.println(cntList.size());
		Collections.sort(cntList);
		for(int cnt : cntList) {
			System.out.println(cnt);
		}
	}

}

- 1일 1 커밋 다짐한 지 하루 만에 실패.. 파이썬으로 풀어본 문제라 풀이는 빨리 생각이 났지만 역시나 입력받는 부분에서 좀 막혔다. 그리고 큐 offer, peek, poll 왜 이렇게 생각이 안 나는지ㅜ 파이썬이 그립다..

728x90
반응형
Comments