Submission #248950

#TimeUsernameProblemLanguageResultExecution timeMemory
248950REALITYNBCave (IOI13_cave)C++14
Compilation error
0 ms0 KiB
#include <bits/stdc++.h> #include "cave.h" using namespace std ; void exploreCave(){ int n; cin>> n ; int a[n] ; memset(a,0,sizeof a) ; int door = 0 ; for(;door<n;door++){ int ans = tryCombination(a) ; if(ans==door){ a[door] = 1 ; } } int aa[n] ; for(int i=0;i<n;i++)aa[i] = i ; answer(a,aa) ; return ; }

Compilation message (stderr)

/tmp/ccPqd3t6.o: In function `main':
grader.c:(.text.startup+0xc): undefined reference to `exploreCave'
collect2: error: ld returned 1 exit status