제출 #1091016

#제출 시각아이디문제언어결과실행 시간메모리
1091016AndreasK동굴 (IOI13_cave)C++14
0 / 100
1 ms348 KiB
#include <bits/stdc++.h>
#include "cave.h"
using namespace std;

void exploreCave(int N) {
    int A[N] = {};
    int B[N];
    for (int c = 0; c < N; c++)
        B[c] = c + 1;
    int x = tryCombination(A);
    while (x != -1) {
        A[x - 1] = 1;
        x = tryCombination(A);
    }
    answer(A, B);
}
#결과 실행 시간메모리채점기 출력
결과를 불러오는 중입니다…
#결과 실행 시간메모리채점기 출력
결과를 불러오는 중입니다…
#결과 실행 시간메모리채점기 출력
결과를 불러오는 중입니다…
#결과 실행 시간메모리채점기 출력
결과를 불러오는 중입니다…
#결과 실행 시간메모리채점기 출력
결과를 불러오는 중입니다…