반응형
250x250
Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- DP
- 유니온 파인드
- 싸피 7기 입학식
- dfs
- 프로그래머스 고득점 kit
- ssafy 7기 교수님
- SSAFYcial
- 삼성청년sw아카데미
- SSAFY 입학식
- 삼성 청년 SW 아카데미
- git
- 프로그래머스
- ssafy 7기
- ssafy 7기 합격
- 코딩 교육
- React
- bfs
- SSAFY
- 코딩교육
- 알고리즘
- Learning
- 전이학습
- 백준
- 이코테
- DenseNet
- SSAFY 8기
- 백준7576 bfs
- 웹 표준 사이트 만들기
- SWEA
- pytorch
Archives
- Today
- Total
개미의 개열시미 프로그래밍
[알고리즘] 백준2667 단지 번호 붙이기 - 자바 본문
728x90
반응형
https://www.acmicpc.net/problem/2667
[풀이 코드]
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
반응형
'알고리즘 > DFS, BFS, 백트래킹' 카테고리의 다른 글
[알고리즘] 백준7576 토마토 - 자바 (0) | 2022.02.04 |
---|---|
[알고리즘] 백준2573 빙산 - 자바 (1) | 2022.02.03 |
[알고리즘] 백준2178 미로탈출 - 자바 (0) | 2022.01.21 |
[알고리즘] 백준4179 불! - 파이썬 (2) | 2021.12.17 |
[알고리즘] 백준16932 모양만들기 - 파이썬 (0) | 2021.12.17 |
Comments