답안 #1083095

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1083095 2024-09-02T13:55:34 Z erdemfurkan 동굴 (IOI13_cave) C++14
0 / 100
1 ms 348 KB
#include "cave.h"
#include <algorithm> 

void exploreCave(int N) {
    int S[N] = {};
    int D[N];
    int prev = tryCombination(S);
    for(int i = 0; i < N; i++) {
        S[i] = !S[i];
        int x = tryCombination(S);
        if(x == -1) {
            break;
        } else {
            if(x < prev) {
                S[i] = !S[i];
            }
        }
    }
    for(int i = 0; i < N; i++) {
        S[i] = !S[i];
        int x = tryCombination(S);
        D[i] = x;
        S[i] = !S[i];
    }
    answer(S,D);
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 344 KB Answer is wrong
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 348 KB Answer is wrong
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 348 KB Answer is wrong
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 348 KB Answer is wrong
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 344 KB Answer is wrong
2 Halted 0 ms 0 KB -