# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
386232 | ismoilov | 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;
typedef long long ll;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
#define IOS ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL);
#define all(x) (x).begin(), (x).end()
#define rall(x) (x).begin(), (x).end()
#define fp(a,i,c) for(int (a) = (i); (a) < (c); (a)++)
#define fpp(a,i,c) for(int (a) = (i); (a) <= (c); (a)++)
#define fv(c) for(int (a) = (1); (a) <= (c); (a)++)
#define fz(c) for(int (a) = (0); (a) < (c); (a)++)
#define fm(a,i,c) for(int (a) = (i); (a) > (c); (a)--)
#define fmm(a,i,c) for(int (a) = (i); (a) >= (c); (a)--)
#define pb push_back
#define in insert
#define ss second
#define ff first
void exploreCave(int n) {
vector <int> v(n, 0);
vector <int> a(n, -1);
int x = 0;
fp(i,0,n){
fp(j,0,n)
if(a[j] == -1)
v[j] = x;
int y = tryCombination(v);
if(y == i)
x = (x+1)%2;
y = i;
int g;
while(y == i)
{
fp(j,0,n)
if(a[j] == -1 || a[j] == n)
v[j] = (x+1)%2;
fp(j,0,n){
if(a[j] == -1){
v[j] = x, g = j;
break;
}
}
y = tryCombination(v);
if(y == i)
a[g] = n;
}
fp(j,0,n)
if(a[j] == n)
a[j] = -1;
a[g] = i;
}
answer(v, a);
}