# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
926709 | htphong0909 | Tracks in the Snow (BOI13_tracks) | C++17 | 974 ms | 1048576 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
void File() {
#define file "ZOO"
freopen(file".inp", "r", stdin);
freopen(file".out", "w", stdout);
}
int n, m;
bool visited[4001][4001];
char arr[4001][4001];
vector<pair<int, int>> dif, nDif;
int dx[] = {-1, 0, 1, 0};
int dy[] = {0, 1, 0, -1};
bool canGo(int x, int y)
{
return (x <= n && y <= m && min(x, y) > 0 && arr[x][y] != '.' && !visited[x][y]);
}
void dfs(int x, int y)
{
visited[x][y] = true;
for (int i = 0; i < 4; i++)
{
int vx = x + dx[i];
int vy = y + dy[i];
if (canGo(vx, vy))
{
if (arr[vx][vy] == arr[x][y]) dfs(vx, vy);
else nDif.emplace_back(vx, vy);
}
}
}
int32_t main() {
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
cout.tie(nullptr);
//File();
cin >> n >> m;
for (int i = 1; i <= n; i++)
{
for (int j = 1; j <= m; j++)
{
cin >> arr[i][j];
}
}
nDif.emplace_back(1, 1);
int ans = 0;
while (!nDif.empty())
{
ans++;
dif = nDif;
nDif.clear();
for (pair<int, int> cur : dif) dfs(cur.first, cur.second);
dif.clear();
}
cout << ans;
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |