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
- ubuntu
- 데이터
- Java
- 단축키
- IntelliJ
- Algorithm
- 데이터전달
- 두 동전
- insert
- 안드로이드
- 큐빙
- goland
- broadcastreceiver
- github
- activity
- 제어반전
- mysql
- service
- Android
- 17837
- spring
- git
- 프로그래머스
- intent
- 알고리즘
- 16197
- data
- vscode
- 백준
- Jenknis
Archives
- Today
- Total
해보자
백준_16234번_인구 이동 본문
소스코드
#include <iostream>
#include <queue>
#include <vector>
using namespace std;
int N, L, R;
int map[50][50]; // map
bool visited[50][50] = { false };
// 상하좌우
int dy[4] = { 1,-1,0,0 };
int dx[4] = { 0,0,1,-1 };
bool bfs(int y, int x) {
vector<pair<int, int> > friends;
queue<pair<int, int> > q;
visited[y][x] = true;
friends.push_back({ y,x });
q.push({ y, x });
int total = 0;
while (!q.empty()) {
int cy = q.front().first;
int cx = q.front().second;
q.pop();
total += map[cy][cx];
for (int i = 0; i < 4; i++) {
int ny = cy + dy[i];
int nx = cx + dx[i];
if (!(ny >= 0 && ny < N && nx >= 0 && nx < N)) continue;
if (visited[ny][nx]) continue;
int diff = abs(map[cy][cx] - map[ny][nx]);
if (!(diff >= L && diff <= R)) continue;
visited[ny][nx] = true;
friends.push_back({ ny, nx });
q.push({ ny, nx });
}
}
// 연합한 나라는 연합 인구수 + 연합을 이루고 있는 칸의 갯수(편의상 소숫점 버림)
int size = friends.size();
if (size == 1) {
visited[y][x] = false;
return false;
}
int avg = total / size;
for (int i = 0; i < size; i++) {
map[friends[i].first][friends[i].second] = avg;
}
return true;
}
int main() {
// 입력
cin >> N >> L >> R;
for (int i = 0; i < N; i++) {
for (int j = 0; j < N; j++) {
cin >> map[i][j]; // 인구 입력
}
}
int count = 0;
// 두 나라의 인구 차이가 L명 이상, R명 이하. => 국경선을 연다
while (true) {
int move_flag = false;
for (int i = 0; i < N; i++)
for (int j = 0; j < N; j++)
visited[i][j] = false;
// 인구 이동
for (int i = 0; i < N; i++) {
for (int j = 0; j < N; j++) {
if (visited[i][j]) continue;
int cur = map[i][j];
if (bfs(i, j))
move_flag = true;
}
}
// 국경선 닫음
//인구 이동이 없었으면? 종료
if (!move_flag) {
break;
}
count++;
}
cout << count;
return 0;
}
'C++ > Solve & Think' 카테고리의 다른 글
백준_17837번_새로운게임2 (0) | 2020.10.10 |
---|---|
백준_16236번_아기상어 (0) | 2020.10.09 |
백준_15686번_치킨 배달 (0) | 2020.10.08 |
백준 14503번 로봇 청소기 (0) | 2020.04.19 |
프로그래머스_LV2_다리를 지나는 트럭 (0) | 2020.02.26 |