# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
433990 | rainboy | Mecho (IOI09_mecho) | C11 | 229 ms | 9024 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <stdio.h>
#define N 800
int di[] = { -1, 1, 0, 0 };
int dj[] = { 0, 0, -1, 1 };
char cc[N][N + 1];
int dd_[N][N], dd[N][N], qu[N * N], n, s;
int solve(int im, int jm, int id, int jd, int t) {
int i, j, head, cnt;
for (i = 0; i < n; i++)
for (j = 0; j < n; j++)
dd[i][j] = n * n;
head = cnt = 0;
dd[im][jm] = 0, qu[head + cnt++] = im * n + jm;
while (cnt) {
int ij, h, d;
ij = qu[cnt--, head++], i = ij / n, j = ij % n, d = dd[i][j] + 1;
if (dd_[i][j] <= t + dd[i][j] / s)
continue;
if (i == id && j == jd)
return 1;
for (h = 0; h < 4; h++) {
int i_ = i + di[h], j_ = j + dj[h];
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |