Submission #411112

#TimeUsernameProblemLanguageResultExecution timeMemory
411112jjjCave (IOI13_cave)C++14
13 / 100
15 ms404 KiB
#include "cave.h" int s[5010], d[5010], s1[5010]; void exploreCave(int N) { for(int i = 0; i < N; i++) d[i] = -1; for(int i = 0; i < N; i++) s[i] = 0; int x = tryCombination(s); if(x == -1) { for(int i = 0; i < N; i++) { s[i] = 1; x = tryCombination(s); d[i] = x; s[i] = 0; } answer(s, d); } if(N <= 100) { for(int i = 0; i < N; i++) s1[i] = 0; int k = 0; while(k < N) { for(int i = 0; i < N; i++) { s1[i] = 1; int y = tryCombination(s1); if(y < x) { if(d[i] == -1) k++; s[i] = 0; d[i] = y; s1[i] = 0; } if(x < y) { if(d[i] == -1) k++; s[i] = 1; d[i] = x; x = y; } } } answer(s, d); } for(int i = x; i < N; i++) { s[i] = 1; int y = tryCombination(s); if(y == -1) break; if(y == i) s[i] = 0; i = y; } /* int k = 0; while(k < N) { if(x != -1) { s[x] = 1; k = x + 1; } else break; x = tryCombination(s); } */ for(int i = 0; i < N; i++) d[i] = i; answer(s, d); }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...