일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 장고
- 디자인 패턴
- useEffect
- codesandbox
- vanillaJS
- useState
- 프로그래머스 자바
- websocket
- 프로그래머스 완전탐색
- 프로그래밍 언어론
- 리액트
- 코딩테스트 고득점 Kit 완전탐색
- 자바
- React JS
- 백준
- JavaScript
- 리액트 훅
- 자바 공부
- Java
- 프로그래머스
- react firebase
- react hook
- design pattern
- NextJS
- 데이터모델링과마이닝
- 코틀린
- 자바스크립트
- 컴퓨터 네트워크
- react
- 코딩테스트 고득점 Kit
Archives
- Today
- Total
기록하는 개발자
[백준][JAVA] 2667: 단지번호붙이기 본문
728x90
import java.util.Scanner;
import java.util.ArrayList;
import java.util.Collections;
public class Main {
static int[][] checked; //확인 여부
static int[][] map;
static int dx[] = {-1,1,0,0};
static int dy[] = {0,0,-1,1};
static int n, count; //정점, 간선개수
static ArrayList<Integer> list = new ArrayList<Integer>();
public static int dfs(int row, int col) {
checked[row][col] = 1; //확인한 정점을 1로 초기화
for(int i=0;i<4;i++) {
int nx = row+dx[i], ny = col+dy[i];
if(nx>=0 && ny>=0 && nx<n && ny<n) {
if(map[nx][ny] == 1 && checked[nx][ny] == 0){
dfs(nx,ny);
count++;
}
}
}
return count;
}
public static void main(String[] args) {
Scanner s = new Scanner(System.in);
n = s.nextInt(); //지도 크기
checked=new int[n][n];
map=new int[n][n];
for(int i=0;i<n;i++) {
String input = s.next();
for(int j=0;j<n;j++)
map[i][j] = input.charAt(j)-'0';
}
for(int i=0;i<n;i++) {
for(int j=0;j<n;j++)
if(map[i][j] == 1 && checked[i][j] == 0){
count = 1;
dfs(i,j);
list.add(count);
}
}
Collections.sort(list);
System.out.println(list.size());
for(int i=0;i<list.size();i++)
System.out.println(list.get(i));
}
}
728x90
'Algorithm' 카테고리의 다른 글
[백준][JAVA] 1463 : 1로 만들기 (0) | 2021.07.11 |
---|---|
[백준][JAVA] 2839 : 설탕 배달 (0) | 2021.07.11 |
[백준][JAVA] 11724 : 연결 요소의 개수 (0) | 2021.07.11 |
[프로그래머스][JAVA] 체육복 (0) | 2021.06.14 |
[프로그래머스][JAVA] 124 나라의 숫자 (0) | 2021.06.13 |