알고리즘 문제 풀이

정올 1695 단지번호붙이기 (JAVA 자바)

superbono 2021. 7. 3. 17:15

문제 출처 - http://jungol.co.kr/bbs/board.php?bo_table=pbank&wr_id=968&sca=3090 

 

JUNGOL

 

www.jungol.co.kr

 

 

문제

<그림 1>과 같이 정사각형 모양의 지도가 있다. 1은 집이 있는 곳을, 0은 집이 없는 곳을 나타낸다.

 

철수는 이 지도를 가지고 연결된 집들의 모임인 단지를 정의하고, 단지에 번호를 붙이려 한다. 여기서 연결되었다는 것은 어떤 집이 좌우, 혹은 아래위로 다른 집이 있는 경우를 말한다. 대각선상에 집이 있는 경우는 연결된 것이 아니다. <그림 2>는 <그림 1>을 단지별로 번호를 붙인 것이다.

 

지도를 입력하여 단지수를 출력하고, 각 단지에 속하는 집의 수를 오름차순으로 정렬하여 출력하는 프로그램을 작성하시오.

 

 

 

입력형식

첫 번째 줄에는 지도의 크기 N(정사각형임으로 가로와 세로의 크기는 같으며 5≤N≤25)이 입력되고, 그 다음 N줄에는 각각 N개의 자료(0혹은 1)가 입력된다.

 

 

출력형식

첫 번째 줄에는 총 단지수를 출력하시오. 그리고 각 단지내 집의 수를 오름차순으로 정렬하여 한 줄에 하나씩 출력하시오.

 

문제 유형

DFS, BFS

 

코드 

-BFS

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.Collections;
import java.util.LinkedList;
import java.util.Queue;
import java.util.StringTokenizer;

public class JO1695_단지번호붙이기_BFS {
	static int N;
	static boolean visited[][];
	static int map[][];
	static int aptNum, aptCnt;
	static ArrayList<Integer> list;
	static Queue<Data> q;
	static class Data{
		int x;
		int y;
		public Data(int x, int y) {
			this.x = x;
			this.y = y;
		}
	}
	
	static int dx[] = {-1, 1, 0, 0};
	static int dy[] = {0, 0, -1, 1};
	public static void main(String[] args) throws IOException {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		StringTokenizer st = new StringTokenizer(br.readLine());
		N = Integer.parseInt(st.nextToken());
		map = new int [N][N];
		visited = new boolean [N][N];
		list = new ArrayList<>();
		q = new LinkedList<>();
		
		for (int i = 0; i < N; i++) {
			st = new StringTokenizer(br.readLine());
			String line = st.nextToken();
			for (int j = 0; j < N; j++) {
				map[i][j] = line.charAt(j) - '0';
			}
		}
		
		for (int i = 0; i < N; i++) {
			for (int j = 0; j < N; j++) {
				if(!visited[i][j] && map[i][j] == 1) {
					visited[i][j] = true;
					aptNum++;
					q.add(new Data(i, j));
					bfs();
					list.add(aptCnt);
					aptCnt = 0;
				}
			}
		}
		
		Collections.sort(list);
		
		System.out.println(aptNum);
		for (int n : list) 
			System.out.println(n);
		
	}
	
	static void bfs() {
		while(!q.isEmpty()) {
			Data cur = q.poll();
			aptCnt++;
			
			int cx = cur.x;
			int cy = cur.y;
			
			for (int i = 0; i < 4; i++) {
				int nx = cx + dx[i];
				int ny = cy + dy[i];
				
				if(nx < 0 || ny < 0 || nx >= N || ny >= N)
					continue;
				
				if(visited[nx][ny] || map[nx][ny] == 0) 
					continue;
				
				visited[nx][ny] = true;
				q.add(new Data(nx, ny));
			}
		}
	}
}

 

 

-DFS

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.Collections;
import java.util.StringTokenizer;

public class JO1695_단지번호붙이기_DFS {
	static int map[][];
	static boolean visited[][];
	static int N, aptCnt, aptNum;
	static ArrayList<Integer>list;
	
	static int dx[] = {-1, 1, 0, 0};
	static int dy[] = {0, 0, -1, 1};
	
	public static void main(String[] args) throws NumberFormatException, IOException {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		StringTokenizer st = new StringTokenizer(br.readLine());
		N = Integer.parseInt(st.nextToken());
		map = new int [N][N];
		visited = new boolean [N][N];
		list = new ArrayList<>();
		for (int i = 0; i < N; i++) {
			st = new StringTokenizer(br.readLine());
			String line = st.nextToken();
			for (int j = 0; j < N; j++) {
				map[i][j] = line.charAt(j) - '0';
			}
		}
		
		for (int i = 0; i < N; i++) {
			for (int j = 0; j < N; j++) {
				if(!visited[i][j] && map[i][j] == 1) {
					aptNum++;
					dfs(i, j);
					list.add(aptCnt);
					aptCnt = 0;
				}
			}
		}
		Collections.sort(list);

		System.out.println(aptNum);
		for (int i : list) {
			System.out.println(i);
		}
	}
	
	static void dfs(int cx, int cy) {
		visited[cx][cy] = true;
		aptCnt++;
		
		int nx = 0; int ny = 0;
		
		for (int i = 0; i < 4; i++) {
			nx = cx + dx[i];
			ny = cy + dy[i];
			
			// 범위를 벗어나면 무시
			if(nx < 0 || ny < 0 || nx >= N || ny >= N)
				continue;
			// 이미 방문했거나, 아파트가 없는 곳(0)이라면 무시
			if(visited[nx][ny] || map[nx][ny] == 0)
				continue;
			dfs(nx, ny);
		}
	}
}

 

기본적인 dfs, bfs 문제였다. 오랜만에 기초부터 다시 다지려고 풀었는데 델타 배열을 만들어야 한다는걸 까먹어서 좀 헤맸다. 역시 알고리즘은 조금씩이라도 매일 꾸준히 풀어야하는 것 같다. 이상하게 백준에선 문제가 풀기 싫은데 정올에선 푸는게 재밌다. 왜일까

그리고 옛날엔 코드를 짤 때 해당 라인의 기능, 그러니까 이 라인에서 무슨 일을 할 것인지에 대해서 집중하였는데 이번엔 전체적인 큰 그림을 생각하면서 작성하려고 노력하였다. 이젠 단순히 문제를 푸는 것에 그치는 것이 아니라 효율적인 코드, 더 나은 코드에 대해서 슬슬 생각해야할 때인 것 같다.