답안 #882318

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
882318 2023-12-03T04:13:11 Z dubabuba 동굴 (IOI13_cave) C++14
0 / 100
196 ms 516 KB
#include "cave.h"
#include <bits/stdc++.h>

const int mxn = 5050;

void exploreCave(int N) {
	int d[N], id[N];
	memset(d, 0, sizeof d);

	while(1) {
		int i = tryCombination(d);
		d[i] = 1;
	}

	for(int i = 0; i < N; i++)
		id[i] = i;
	answer(d, id);
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 160 ms 512 KB too much calls on tryCombination()
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 196 ms 516 KB too much calls on tryCombination()
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 348 KB too much calls on tryCombination()
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 348 KB too much calls on tryCombination()
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 160 ms 512 KB too much calls on tryCombination()
2 Halted 0 ms 0 KB -