Submission #672820

#TimeUsernameProblemLanguageResultExecution timeMemory
672820mseebacherCave (IOI13_cave)C++17
0 / 100
403 ms368 KiB
#include <bits/stdc++.h> #include "cave.h" using namespace std; void exploreCave(int n){ int pos[n]; int switched[n]; vector<bool> vis(n,0); for(int i = 0;i<n;i++){ for(int j = 0;j<n;j++){ if(!vis[j]) switched[j] = 0; } int l = 0; int r = n-1; int x = tryCombination(switched); int mid = 0; bool flag = 1; if(x == i){ flag = 0; } while(l<r){ mid = (l+r) >> 1; for(int h = l;h<=mid;h++){ if(!vis[h]) switched[h] = flag; } for(int h = 0;h<l;h++){ if(!vis[h]) switched[h] = !flag; } for(int h = mid+1;h<n;h++){ if(!vis[h]) switched[h] = !flag; } x = tryCombination(switched); if(x == i) l = mid+1; else r = mid; } vis[r] = 1; pos[r] = i; switched[i] = flag; } answer(switched,pos); }
#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...