# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
389920 | null_awe | Tracks in the Snow (BOI13_tracks) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
vector<int> dx{-1, 1, 0, 0}, dy{0, 0, -1, 1};
int main() {
int h, w;
cin >> h >> w;
vector<string> field(h);
vector<vector<int>> rank(h, vector<int>(w, 0));
for (int i = 0; i < h; ++i) cin >> field[i];
int m = 1;
rank[0][0] = 1;
deque<pair<int, int>> q;
vector<int> first{0, 0};
q.push_back(first);
while (!q.empty()) {
pair<int, int> s = q.front();
m = max(m, rank[s.first][s.second]);
q.pop_front();
for (int i = 0; i < 4; ++i) {
int x = s.first + dx[i], y = s.second + dy[i];
if (x < 0 || y < 0 || x >= h || y >= w || rank[x][y] > 0 || field[x][y] == '.') continue;
pair<int, int> add{x, y};
int r = rank[s.first][s.second];
if (field[s.first][s.second] == field[x][y]) {
q.push_front(add);
rank[x][y] = r;
} else {
q.push_back(add);
rank[x][y] = r + 1;
}
}
}
cout << m;
return 0;
}