# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
207776 | mode149256 | 동굴 (IOI13_cave) | C++14 | 463 ms | 640 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "cave.h"
#include <bits/stdc++.h>
void exploreCave(int N) {
int *ans = new int[N];
int *D = new int[N];
// 00001111
for (int i = 0; i < N; ++i)
ans[i] = -1;
auto print = [&](int *vec) {
for (int i = 0; i < N; ++i)
printf("%d ", vec[i]);
printf("\n");
};
auto bandyk = [&](int *vec) {
int ret = tryCombination(vec);
return ret == -1 ? N : ret;
};
for (int h = 0; h < N; ++h)
{
int *A = new int[N];
for (int j = 0; j < N; ++j)
{
if (ans[j] == -1) A[j] = 1;
else A[j] = ans[j];
컴파일 시 표준 에러 (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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |