Submission #650777

#TimeUsernameProblemLanguageResultExecution timeMemory
650777LitusianoCave (IOI13_cave)C++17
Compilation error
0 ms0 KiB
#include "cave.h"
#include<bits/stdc++.h>
using namespace std;
//#define int long long

void exploreCave(int N) {
  /* ... */
  int v[N];
  for(int i = 0; i<N; i++){
    v[i] = 0;
  }
  int s[N];
  for(int i = 0; i<N; i++) s[i] = i;
  if(tryCombination(v) == -1){
    For(int i = 0; i<N; i++){
      v[i] = 1;
      s[i] = tryCombination(v);
      v[i] = 0;
    }
  }
  else{
    for(int i = 0; i<N; i++){
      if(tryCombination(v) == i){
        v[i]^=1;
      }
    }
  }
  
  answer(v,s);
  //for(int i = 0; i<N; i++) cout<<v[i]<<" "; cout<<endl;
  //for(int i = 0; i<N; i++) cout<<s[i]<<" "; cout<<endl;
  return;
}

Compilation message (stderr)

cave.cpp: In function 'void exploreCave(int)':
cave.cpp:15:9: error: expected primary-expression before 'int'
   15 |     For(int i = 0; i<N; i++){
      |         ^~~
cave.cpp:15:20: error: 'i' was not declared in this scope
   15 |     For(int i = 0; i<N; i++){
      |                    ^