# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
199483 | SamAnd | Zoo (COCI19_zoo) | C++17 | 2012 ms | 376 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int N = 1003;
const int xx[4] = {0, 1, 0, -1};
const int yy[4] = {1, 0, -1, 0};
struct ban
{
int x, y;
ban(){}
ban(int x, int y)
{
this->x = x;
this->y = y;
}
};
int n, m;
char a[N][N];
int main()
{
scanf("%d%d", &n, &m);
for (int i = 0; i < n; ++i)
scanf(" %s", a[i]);
int ans = 0;
char z = a[0][0];
char hz;
if (z == 'B')
hz = 'T';
else
hz = 'B';
queue<ban> q, qq;
q.push(ban(0, 0));
a[0][0] = 'X';
while (1)
{
if (q.empty())
break;
++ans;
while (!q.empty())
{
ban t = q.front();
q.pop();
for (int i = 0; i < 4; ++i)
{
ban h = t;
h.x += xx[i];
h.y += yy[i];
if (h.x >= 0 && h.x < n && h.y >= 0 && h.y < m)
{
if (a[h.x][h.y] == z)
{
a[h.x][h.y] = 'X';
q.push(h);
}
else if (a[h.x][h.y] == hz)
{
qq.push(h);
}
}
}
}
q = qq;
while (!qq.empty())
qq.pop();
swap(z, hz);
}
printf("%d\n", ans);
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |