티스토리 뷰
문제
https://www.acmicpc.net/problem/2667
정답
bfs 방식을 이용하였다. dfs 방식으로도 풀어보고 업데이트를 해야겠다.
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.*;
class Points{
int x;
int y;
Points(int x, int y){
this.x = x;
this.y = y;
}
}
public class Main {
static int[] dx = {-1,0,1,0};
static int[] dy = {0,1,0,-1};
static boolean[][] visited;
static int [][] arr;
static ArrayList<Integer> answer;
static int N, count, houseCount;
static StringTokenizer st;
static Queue<Points> queue;
public static void bfs(int x, int y){
queue = new LinkedList<>();
Points cp = new Points(x,y);
queue.offer(cp);
visited[x][y] = true;
houseCount = 1;
while (!queue.isEmpty()){
Points p = queue.poll();
arr[p.x][p.y] = 0;
for (int i = 0 ; i < 4; i++){
int nx = p.x + dx[i];
int ny = p.y + dy[i];
if (nx >= 0 && nx < N && ny >= 0 && ny < N && visited[nx][ny]== false && arr[nx][ny] == 1){
visited[nx][ny]= true;
houseCount ++;
queue.offer(new Points(nx, ny));
}
}
}
answer.add(houseCount);
}
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
N = Integer.parseInt(br.readLine());
arr = new int[N][N];
visited = new boolean[N][N];
answer = new ArrayList<>();
for (int x = 0 ; x < N; x ++){
String[] numbers = br.readLine().split("");
for (int y = 0; y < N ; y++){
arr[x][y] = Integer.parseInt(numbers[y]);
}
}
count = 0;
for (int x = 0 ; x < N; x ++){
for (int y = 0; y < N; y++){
if (arr[x][y] == 1){
count ++;
bfs(x,y);
}
}
}
System.out.println(count);
Collections.sort(answer);
for (int i = 0; i < answer.size(); i++){
System.out.println(answer.get(i));
}
}
}
'알고리즘' 카테고리의 다른 글
백준 2178) 미로탐색 자바 Java (1) | 2025.01.29 |
---|---|
백준 21610) 마법사 상어와 비바라기 자바 Java (0) | 2025.01.10 |
java) 조합(combination) 문제 메모이제이션 기법 활용하기 (dfs) (1) | 2024.12.25 |
java) 부분 집합 문제 DFS로 해결하기 (0) | 2024.12.22 |
백준 1753) 최단경로 Java 풀이 (0) | 2024.08.15 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- 쿠버네티스 오브젝트
- AWS
- 프로그래머스
- 단지번호붙이기 JAVA
- 백준 1965 풀이
- Java #객체 #자바기초 #자바
- ECR
- 백준 상자넣기
- 백준 상자 넣기 자바
- docker
- EB
- Java #코린이 #자바
- 마법사 상어와 비바라기 자바
- EC2
- 행렬 테두리 회전하기 자바
- 코딩테스트
- 무중단배포
- k8s object
- 단지번호붙이기 자바
- 자료구조
- java #스프링 #spring #server
- k8s
- 자바
- 쿠버네티스 개념
- 백준
- dfs
- java
- StatefulSet
- 구간합구하기
- 백준 그림 자바
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함