# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
167443 | wildturtle | Cave (IOI13_cave) | C++14 | 0 ms | 0 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include"cave.h"
#include<bits/stdc++.h>
using namespace std;
int a,b,c,d,i,e,f,g,n,m,k,l,A[200005],B[200005],C[200005],D[200005],mid,le,ri;
void go(int x,int y) {
for(int i=0;i<n;i++) {
if(B[i]>0) A[i]=B[i]-1;
else { if(x<=i && i<=y) A[i]=1;
else A[i]=0;
}
}
return tryCombination(A);
}
void go1(int x,int y) {
for(int i=0;i<n;i++) {
if(B[i]>0) A[i]=B[i]-1;
else { if(x>i || i>y) A[i]=0;
else A[i]=1;
}
}
return tryCombination(A);
}
void exploreCave(int n) {
n=N;
for(int i=0;i<n;i++) {
le=0; ri=n-1;
a=0;
c=go(0,n-1);
if(c>i || c==-1) a=1;
while(le<=ri) {
mid=(le+ri)/2;
if(a==1) {
c=go(le,mid);
if(c>i || c==-1) b=mid;
else a=mid+1;
}
else {
c=go1(le,mid);
if(c>i || c==-1) b=mid;
else a=mid+1;
}
}
if(c==1) B[i]=2;
else B[i]=1;
C[i]=c;
D[i]=mid;
}
answer(C,D);
}