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 |
Tags
- SWEA
- koitp
- 동적 계획법
- 삼성 기출
- 잠실
- 완전탐색
- 삼성 SDS 대학생 알고리즘 특강
- 시뮬레이션
- 알고리즘
- 브루트포스
- 에라토스테네스의 체
- C++
- DP
- sw expert academy
- hackerrank
- 소수
- 구현
- 백준
- 다이나믹 프로그래밍
- dfs
- 스택
- dynamic programming
- PS
- BFS
- 그리디
- BOJ
- 백트래킹
- Algorithm
- 해커랭크
- 맛집
Archives
- Today
- Total
펭로그
[C++] 백준 BOJ 16234 인구 이동 본문
문제링크 : https://noj.am/16234
완탐 + DFS/BFS
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 | // BOJ 16234 인구 이동 #include <iostream> #include <vector> using namespace std; int dx[] = {0, 0, -1, 1}; int dy[] = {-1, 1, 0, 0}; struct node { int x, y; }; int N; // 크기 int L, R; // 최저, 최대 int sum; // 세포들의 합 int cnt; // 세포 갯수 vector<vector<int> > arr; // 세포 배열 vector<vector<bool> > visited; // 방문 체크 vector<node> change; // 바꿀 세포 리스트 int abs(int a) { return a >= 0 ? a : -a; } void dfs(node cur) { for (int i = 0; i < 4; i++) { int nx = cur.x + dx[i]; int ny = cur.y + dy[i]; if(visited[nx][ny]) continue; int diff = abs(arr[cur.x][cur.y] - arr[nx][ny]); if(diff >= L && diff <= R){ visited[nx][ny] = true; // 방문 체크 change.push_back({nx, ny}); // 변경할 인덱스 추가 sum += arr[nx][ny]; // 값 누적 cnt++; // 세포 카운팅 dfs({nx, ny}); } } } int main() { ios::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); freopen("../input.txt", "r", stdin); cin >> N >> L >> R; arr = vector<vector<int> >(N + 2, vector<int>(N + 2)); visited = vector<vector<bool> >(N + 2, vector<bool>(N + 2, true)); for(int i = 1; i <= N; i++) for(int j = 1; j <= N; j++) cin >> arr[i][j]; int result = 0; while (true) { // visited 초기화 for (int i = 1; i <= N; i++) for (int j = 1; j <= N; j++) visited[i][j] = false; bool flag = false; // 세포가 변경 되었는지 체크 for (int i = 1; i <= N; i++) { for (int j = 1; j <= N; j++) { if (visited[i][j]) continue; visited[i][j] = true; // 방문 체크 sum = arr[i][j]; // 값 초기화 cnt = 1; // 세포 갯수 카운팅 change.clear(); change = vector<node>(); change.push_back({i, j}); // 바꿀 목록에 추가 dfs({i, j}); // cnt가 1이라는 것은 탐색 못했다는 뜻 if (cnt == 1) continue; flag = true; int avg = sum / cnt; for (auto &c:change) arr[c.x][c.y] = avg; } } // 완탐 돌리는 동안 세포가 변경 안되었으면 탈출 if (!flag) break; result++; } cout << result; return 0; } | cs |
'Study > PS(Algorithm)' 카테고리의 다른 글
[C++] 백준 BOJ 16236 아기 상어 (0) | 2018.10.30 |
---|---|
[C++] SWEA 1949 등산로 조성 (0) | 2018.10.22 |
[C++] 백준 BOJ 14888 연산자 끼워넣기 (SWEA 4008 숫자 만들기) (0) | 2018.10.20 |
[C++] 백준 BOJ 14891 톱니바퀴 (SWEA 4013 특이한 자석) (0) | 2018.10.19 |
[C++] 문자열 계산기 (6) | 2018.10.18 |
Comments