제출 #555288

#제출 시각아이디문제언어결과실행 시간메모리
555288uroskCave (IOI13_cave)C++14
0 / 100
2060 ms2904 KiB
#include "cave.h"
#include <bits/stdc++.h>
#define ld double
#define ll int
#define ull unsigned long long
#define llinf 100000000000000000LL // 10^17
#define iinf 2000000000 // 2*10^9
#define pb push_back
#define popb pop_back
#define fi first
#define sc second
#define endl '\n'
#define pii pair<int,int>
#define pll pair<ll,ll>
#define pld pair<ld,ld>
#define sz(a) int(a.size())
#define all(a) a.begin(),a.end()
#define ceri(a,l,r) {for(ll i_ = l;i_<=r;i_++) cerr<<a[i_]<< " ";cerr<<endl;}
using namespace std;
#define maxn 5005
ll n;
ll a[maxn];
ll b[maxn];
ll c[maxn];
void exploreCave(int N) {
    n = N;
    for(ll i = 0;i<n;i++) b[i] = -1;
    for(ll i = 0;i<n;i++) c[i] = 0;
    if(tryCombination(c)==-1){
        for(ll i = 0;i<n;i++) c[i] = 1;
        for(ll i = 0;i<n;i++){
            ceri(b,0,n-1);
            for(ll j = 0;j<n;j++){
                if(b[j]!=-1) continue;
                c[j] = 0;
                ll e = tryCombination(c);
                //ceri(c,0,n-1);
                //cerr<<j<< "  "<<e<<endl;
                if(i==n-1){
                    if(e==-1){
                        b[j] = i;
                        answer(a,b);
                    }
                }else{
                    if(e>i){
                        b[j] = i;
                        goto lol;
                    }
                }
                c[j] = 1;
            }
            lol:;
        }
    }
}
#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...