# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1176186 | tawwie | Cave (IOI13_cave) | C++20 | 774 ms | 884 KiB |
#include "cave.h"
#include <bits/stdc++.h>
using namespace std;
void exploreCave(int N) {
unordered_map<int, int> door, s; // u[i] = j -> switch j is for door i
// initialize door
for(int i=0; i<N; i++) s[i] = -1;
for(int i=0; i<N; i++){ // iterate doors
int buffer[N];
for(int j=0; j<N; j++){
if(s[j] != -1) buffer[j] = s[j];
else buffer[j] = 1; // arbitrary
}
int switchdoor; // switch mode for door i (0 / 1)
if(tryCombination(buffer) == i){
switchdoor = 0;
}else{
switchdoor = 1;
}
int l = 0, r = N - 1;
while(l < r){
int mid = (l + r) / 2;
for(int j=l; j<=mid; j++){
if(s[j] != -1) buffer[j] = s[j];
else buffer[j] = switchdoor;
}
for(int j=mid+1; j<=r; j++){
if(s[j] != -1) buffer[j] = s[j];
else buffer[j] = abs(switchdoor - 1);
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |