April 13, 2021 ( last updated : April 13, 2021 )
이분 탐색
너비 우선
탐색그래프
이론그래프
탐색
https://github.com/sneakstarberry/
[백준] 1981번 배열에서 이동
(n, n)까지 이동하는 중에 최솟 값과 최대 값을 가장 적게하는 문제
처음에는 bfs로 하나 씩 지나가면서 최솟값과 최댓값을 갱신해서 두 수 사이의 차이가 가장 작을 때를 구할려고 했는데 역시 잘 안됐다. 중간에 이분 탐색을 안넣었기 때문이다. 이분 탐색으로 최댓값과 최솟값을 예측하고 bfs로 탐색하여 (n, n)까지 도착할 수 있는지 확인한다.
#include <algorithm>
#include <cmath>
#include <cstring>
#include <iostream>
#include <queue>
#include <vector>
using namespace std;
int N, CHART[101][101], IS_VISITED[101][101];
int MIN = 201;
int dx[4] = {-1, 1, 0, 0}, dy[4] = {0, 0, -1, 1};
vector<int> VEC;
int main() {
ios_base::sync_with_stdio(NULL);
cin.tie(0);
cin >> N;
for (int i = 0; i < N; i++) {
for (int j = 0; j < N; j++) {
cin >> CHART[i][j];
VEC.push_back(CHART[i][j]);
}
}
int low = 0, high = 0, result = 987654321;
sort(VEC.begin(), VEC.end());
VEC.erase(unique(VEC.begin(), VEC.end()), VEC.end());
while (low < VEC.size()) {
memset(IS_VISITED, 0, sizeof(IS_VISITED));
queue<pair<int, int>> q;
if (CHART[0][0] >= VEC[low] && CHART[0][0] <= VEC[high]) {
IS_VISITED[0][0] = 1;
q.push({0, 0});
}
while (!q.empty()) {
int y = q.front().first;
int x = q.front().second;
q.pop();
for (int i = 0; i < 4; i++) {
int nx = x + dx[i];
int ny = y + dy[i];
if (0 > nx || nx >= N || ny < 0 || ny >= N)
continue;
if (IS_VISITED[ny][nx])
continue;
if (VEC[low] <= CHART[ny][nx] && VEC[high] >= CHART[ny][nx]) {
IS_VISITED[ny][nx] = true;
q.push({ny, nx});
}
}
}
if (IS_VISITED[N - 1][N - 1]) {
result = min(result, VEC[high] - VEC[low]);
low++;
} else if (high < VEC.size() - 1) {
high++;
} else {
break;
}
}
cout << result;
return 0;
}
Originally published April 13, 2021
Latest update April 13, 2021
Related posts :