제출 #34798

#제출 시각아이디문제언어결과실행 시간메모리
34798SYury동굴 (IOI13_cave)C++11
0 / 100
7 ms640 KiB
#include "cave.h" #include<bits/stdc++.h> using namespace std; typedef long long ll; typedef unsigned long long ull; typedef long double dbl; typedef pair<int, int> pii; #define forn(i, n) for (int i = 0; i < (int)(n); ++i) #define sqr(x) (x)*(x) #define F(i, l, r) for(int i = (l); i < (r); i++) #define DF(i, l, r) for(int i = (l); i > (r); i--) #define I(x, a) for(auto x : (a)) #define mp make_pair #define X first #define Y second #define clean(x) memset((x), 0, sizeof(x)) #define ret return #define cont continue #define brk break #define ins insert #define all(x) (x).begin(),(x).end() #define sz(x) (int)(x).size() #define sync ios_base::sync_with_stdio(false);cin.tie(0) #define pb push_back #define fin(x) freopen(x, "r", stdin) #define fout(x) freopen(x, "w", stdout) #define y1 fjfg const int maxn = 5e3 + 3; int state[maxn], known[maxn]; int what[maxn]; void exploreCave(int n){ F(i, 0, n)state[i] = 0; F(i, 0, n)known[i] = -1; while(true){ int k = tryCombination(state); bool fa = true; F(i, 0, n){ if(known[i] != -1)cont; fa = false; state[i] = 1 - state[i]; int j = tryCombination(state); state[i] = 1 - state[i]; if(j < k){known[i] = state[i]; what[i] = j;} if(j > k){known[i] = 1 - state[i]; state[i] = 1 - state[i]; what[i] = k;} } if(fa)brk; } answer(known, what); }
#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...