기술 블로그

16234번 인구 이동 본문

알고리즘 문제/BOJ

16234번 인구 이동

parkit 2018. 10. 26. 20:46
728x90
반응형

https://www.acmicpc.net/problem/16234

 



최근 다시 푼 코드 : https://hsdevelopment.tistory.com/226




2018년 하반기 삼성 SW 역량 테스트 문제이다.

 

하루에 인구 이동이 여러 번 발생할 수 있다는 것만 알면 나름 쉽게 풀 수 있는 문제이다.

 

즉, for문을 통해 조건에 맞는 국가들이 있으면 DFS 함수를 실행한다.

 

그리고, DFS 호출이 한 번 끝날 때 마다, 인구 이동을 시킨다.

 

위에 처럼 작성하였다.

 

참고로 visit(방문 여부)가 있기 때문에, 하루에 여러 번 인구 이동이 발생하여도 서로 영향을 끼치지 않는다.

 

(코드가 좀 더러워 보인다. 나중에 시간이 날 때, 좀 더 간결하게 고쳐보도록 해야겠다.)

 

 

 

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
#include <iostream>
#include <queue>
#include <stack>
#include <cstdio>
#include <vector>
#include <cstring>
#include <string>
#include <math.h>
#include <algorithm>
#include <map>
 
using namespace std;
 
int Map[51][51= { 0, };
 
int dy[4= { -1010 };
int dx[4= { 0-101 };
 
int N = 0, L = 0, R = 0;
 
bool visit[51][51= { false, };
bool isStop = true;
 
int cnt = 0;
int sum = 0;
 
vector<pair<intint> > v;
 
void DFS(int r, int c)
{
    visit[r][c] = true;
 
    for (int i = 0; i < 4; i++)
    {
        for (int j = 0; j < 4; j++)
        {
            int row = r + dy[i];
            int column = c + dx[i];
 
            if (visit[row][column] || row >= N || row < 0 || column >= N || column < 0continue;        
 
            int dist = abs(Map[row][column] - Map[r][c]);
 
            if (L <= dist && dist <= R)
            {
                sum += Map[row][column];
                ++cnt;
 
                isStop = false// 인구 이동 계산 여부
 
                v.push_back({ row, column });
 
                DFS(row, column);
            }
        }
    }
}
 
int main(void)
{
    int result = 0;
 
    memset(Map, 0sizeof(Map));
 
    scanf("%d %d %d"&N, &L, &R);
 
    for (int i = 0; i < N; i++)
    {
        for (int j = 0; j < N; j++)
        {
            scanf("%d"&Map[i][j]);
        }
    }
 
    while (1)
    {
        isStop = true;
 
        for (int i = 0; i < N; i++)
        {
            for (int j = 0; j < N; j++)
            {
                if (!visit[i][j])
                {            
                    sum = Map[i][j];
 
                    ++cnt;
 
                    v.push_back({ i,j });
 
                    DFS(i, j);
 
                    int avg = sum / cnt;
 
                    int Size = v.size();
 
                    for (int k = 0; k < Size; k++)
                    {
                        Map[v.at(k).first][v.at(k).second] = avg;
                    }
 
                    v.clear();
 
                    sum = 0;
                    cnt = 0;
                }
            }
        }
 
        memset(visit, falsesizeof(visit));
 
        if (isStop) break
        // isStop이 true라는 것은 더 이상 진행 X
 
        ++result;
    }
 
    printf("%d\n", result);
 
    return 0;
}
cs


728x90
반응형

'알고리즘 문제 > BOJ' 카테고리의 다른 글

1316번 그룹 단어 체커  (0) 2018.10.27
1806번 부분합  (0) 2018.10.27
16236번 아기 상어  (0) 2018.10.26
2869번 달팽이는 올라가고 싶다  (0) 2018.10.21
2609번 최대공약수와 최소공배수  (0) 2018.10.14