Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 자바PS
- 백준
- BFS
- 우선순위큐
- 세그먼트트리
- spring
- dp
- java
- 백준코딩테스트
- PS
- QUICKSTARTGUIDE
- 알고리즘
- 네트워크플로우
- 구현
- 취득후기
- deque
- COSPROJAVA1급
- 다이나믹프로그래밍
- 01BFS
- 완전탐색
- 다익스트라
- DFS
- 엘라스틱서치
- COSPRO
- 이젠 골드구현도 어렵네..
- YBMCOS
- 시뮬레이션
- 재귀함수
- 게더타운시작
- GatherTown
Archives
- Today
- Total
공부공간
BOJ - 14868 ) 문명 본문
https://www.acmicpc.net/problem/14868
문명을 bfs로 전파하면서 전체 문명의수가 한개가되는 즉, union-find를 동시에 수행하면서
전체 root가 1개가 되는 시점을 찾으면된다.
편향트리가 될수있기에, rank를 이용하여서 꼭 정리를 해주어야한다.
이러한 disjoint set과 완전탐색이 결합된 문제를 자주 풀어야겠다..
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.ArrayDeque;
import java.util.Arrays;
import java.util.StringTokenizer;
public class 문명{
public static int find(int x) {
if(p[x] == x)return x;
return find(p[x]);
}
public static boolean union(int x1 , int x2) {
x1 = find(x1);
x2 = find(x2);
if(x1==x2) return false;
else {
if(rank[x1] > rank[x2]) {
p[x2] = x1;
} else if(rank[x1] < rank[x2]) {
p[x1] = x2;
} else {
rank[x1]++;
p[x2] = x1;
}
}
return true;
}
public static int p[], rank[];
public static int map[][];
public static void main(String[] args) throws Exception{
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine());
int n = Integer.parseInt(st.nextToken());
int k = Integer.parseInt(st.nextToken());
p = new int[k+1];
rank = new int[k+1];
ArrayDeque<int[]> dq = new ArrayDeque<>();
ArrayDeque<int[]> ddq = new ArrayDeque<>();
int dir[][] = {{1,0},{-1,0},{0,-1},{0,1}};
map = new int[n][n];
for(int i = 1 ; i <= k ; i++) {
st = new StringTokenizer(br.readLine());
int x = Integer.parseInt(st.nextToken())-1;
int y = Integer.parseInt(st.nextToken())-1;
map[y][x] = i;
p[i] = i;
dq.add(new int[] {y,x});
}
//System.out.println(Arrays.toString(p));
int year = 0;
while(true) {
while(!dq.isEmpty()) {
int now[] = dq.poll();
ddq.add(new int[] {now[0], now[1]});
int y = now[0] , x = now[1];
for(int i = 0 ; i < 4 ; i++) {
int ny = y + dir[i][0];
int nx = x + dir[i][1];
if(ny >= 0 && nx >= 0 && nx < n && ny < n) {
if(map[ny][nx] != 0) {
if(map[ny][nx] != map[y][x]) {
if(union(map[ny][nx], map[y][x])) {
k--;
}
}
}
}
}
}
if(k==1) {
System.out.println(year); break;
}
while(!ddq.isEmpty()) {
int now[] = ddq.poll();
int y = now[0] , x = now[1];
for(int i = 0 ; i < 4 ; i++) {
int ny = y + dir[i][0];
int nx = x + dir[i][1];
if(ny >= 0 && nx >= 0 && nx < n && ny < n) {
if(map[ny][nx] == 0) {
map[ny][nx] = map[y][x]; //그냥 문명 전파
dq.add(new int[] {ny,nx});
}
else if(map[ny][nx] != 0 && map[ny][nx] !=map[y][x]) {
if(union(map[ny][nx], map[y][x])) {
k--;
}
}
}
}
}year++;
}
}
}
'알고리즘 > 완전탐색(BFS,DFS)' 카테고리의 다른 글
BOJ - 3109 ) 빵집 (0) | 2020.04.19 |
---|---|
BOJ - 1600 ) 말이 되고픈 원숭이 (0) | 2020.04.19 |
BOJ - 3197 ) 백조의호수 (0) | 2020.04.18 |
BOJ - 1938 ) 통나무 옮기기 (0) | 2020.04.07 |
BOJ - 1325 ) 효율적인해킹 (0) | 2020.04.06 |
Comments