Submission #456172

#TimeUsernameProblemLanguageResultExecution timeMemory
456172fuad27Cave (IOI13_cave)C++14
Compilation error
0 ms0 KiB
#include "cave.h" #include<bits/stdc++.h> using namespace std; void exploreCave(int N) { int S[N+1]; int test[N+1]; for(int i = 0 ; i < N ; ++i) S[i] = 0, D[i] = i; int val = tryCombination(S); if(val == -1) { for(int i = 0 ; i < N ; ++i){ S[i] = 1; test[i] = tryCombination(S); S[i] = 0; } } else{ while(val != -1) { S[val] = !S[val]; val = tryCombination(S); } } } answer(S, D); }

Compilation message (stderr)

cave.cpp: In function 'void exploreCave(int)':
cave.cpp:7:41: error: 'D' was not declared in this scope
    7 |  for(int i = 0 ; i < N ; ++i) S[i] = 0, D[i] = i;
      |                                         ^
cave.cpp: At global scope:
cave.cpp:24:8: error: expected constructor, destructor, or type conversion before '(' token
   24 |  answer(S, D);
      |        ^
cave.cpp:25:1: error: expected declaration before '}' token
   25 | }
      | ^