Algorithm/BOJ

[BOJ] 인구 이동

goakgoak 2020. 10. 28. 14:16

[16234] 인구 이동

www.acmicpc.net/problem/16234

 

 

Solution

  • 문제에 명시된 국경선을 map[][]에서 1*1 크기의 칸으로 정의하였고, 인접한 국가와의 인구차가 범위 안에 있을 경우에 0으로 표시했다.
  • 모든 국경선에 표시한 뒤 bfs 함수로 연합이 되는 국가의 인구수의 합과 평균을 구해 map[][]에 표시했다.
  • 조건을 만족하는 국경선이 없을 때 까지 while문은 반복된다.   

 

 

소스코드

 

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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.*;
 
public class Main {
    static int n, size, L, R;
    static int[][] map, copy, visited;
    static int[][] dir1 = {{10}, {-10}, {01}, {0-1}};
    static int[][] dir2 = {{20}, {-20}, {02}, {0-2}};
    static List<Dot> unitedList;
 
    static class Dot {
        private int x, y;
 
        public Dot(int x, int y) {
            this.x = x;
            this.y = y;
        }
    }
 
    public static void main(String[] args) throws IOException {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        StringTokenizer st = new StringTokenizer(br.readLine());
        n = stoi(st.nextToken());
        L = stoi(st.nextToken());
        R = stoi(st.nextToken());
 
        size = n + (n - 1);
        map = new int[size][size];
 
        for (int i = 0; i < size; i++) {
            Arrays.fill(map[i], -1);
        }
 
        for (int i = 0; i < size; i += 2) {
            st = new StringTokenizer(br.readLine());
            for (int j = 0; j < size; j += 2) {
                map[i][j] = stoi(st.nextToken());
            }
        }
 
        int count, answer = 0;
        while (true) {
            count = 0;
            init();
            int nx, ny;
            for (int i = 0; i < size; i += 2) {
                for (int j = 0; j < size; j += 2) {
                    for (int k = 0; k < 4; k++) {
                        nx = i + dir2[k][0];
                        ny = j + dir2[k][1];
 
                        if (nx >= 0 && ny >= 0 && nx < size && ny < size) {
                            int sub = Math.abs(map[i][j] - map[nx][ny]);
                            if (sub >= L && sub <= R) {
                                copy[i + dir1[k][0]][j + dir1[k][1]] = 0;
                                count++;
                            }
                        }
                    }
                }
            }
 
            if(count == 0){
                break;
            }
            visited = new int[size][size];
            for (int i = 0; i < size; i += 2) {
                for (int j = 0; j < size; j += 2) {
                    if (visited[i][j] == 0) {
                        bfs(new Dot(i, j));
                    }
                }
            }
            answer++;
        }
        System.out.println(answer);
    }
 
    private static void bfs(Dot dot) {
        Queue<Dot> q = new LinkedList<>();
        unitedList = new ArrayList<>();
        q.offer(dot);
        visited[dot.x][dot.y] = 1;
        unitedList.add(dot);
 
        int sum = 0;
        int count = 1;
        while (!q.isEmpty()) {
            Dot cur = q.poll();
            sum += copy[cur.x][cur.y];
 
            int nx, ny;
            for (int i = 0; i < 4; i++) {
                nx = dir1[i][0+ cur.x;
                ny = dir1[i][1+ cur.y;
 
                if (nx >= 0 && ny >= 0 && nx < size && ny < size) {
                    if (visited[nx][ny] == 0 && copy[nx][ny] != -1) {
                        if (copy[nx][ny] > 0) {
                            unitedList.add(new Dot(nx, ny));
                            count++;
                        }
                        visited[nx][ny] = 1;
 
                        q.offer(new Dot(nx, ny));
                    }
                }
            }
        }
        update(sum / count);
    }
 
    private static void update(int count) {
        for (Dot dot : unitedList) {
            map[dot.x][dot.y] = count;
        }
    }
 
    private static void init() {
        copy = new int[size][size];
        for (int i = 0; i < size; i++) {
            copy[i] = map[i].clone();
        }
    }
 
    private static void print(int[][] arr) {
        for (int i = 0; i < arr.length; i++) {
            for (int j = 0; j < arr[i].length; j++) {
                System.out.print(arr[i][j] + " ");
            }
            System.out.println();
        }
    }
 
    private static int stoi(String s) {
        return Integer.parseInt(s);
    }
}
cs