| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 725892 | vjudge1 | 로봇 (APIO13_robots) | C++17 | 77 ms | 163840 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int dr[] = {-1, 0, +1, 0};
const int dc[] = {0, +1, 0, -1};
enum {
STAND = 4,
UP = 0,
RIGHT = 1,
DOWN = 2,
LEFT = 3
};
int n, m, k;
char a[500][500];
int c[500][500];
int f[5][9][9][500][500];
int main() {
memset(f, -1, sizeof f);
cin >> k >> m >> n;
for (int i = 0; i < n; i++) cin >> a[i];
for (int i = 0; i < n; i++) {
for (int j = 0; j < m; j++) {
if (a[i][j] == 'A') {
c[i][j] = +3;
} else if (a[i][j] == 'C') {
c[i][j] = +1;
} else if (a[i][j] == 'x') {
c[i][j] = -1;
} else if (a[i][j] == '.') {
c[i][j] = 0;
} else {
a[i][j] -= '0' + 1;
assert(0 <= a[i][j] && a[i][j] < k);
f[a[i][j]][a[i][j]][i][j][STAND] = 0;
}
}
}
}컴파일 시 표준 에러 (stderr) 메시지
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
