# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
897908 | Sir_Ahmed_Imran | 동굴 (IOI13_cave) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
///~~~LOTA~~~///
#include "grader.h"
#include <bits/stdc++.h>
using namespace std;
#define nl '\n'
#define ff first
#define ss second
#define ll long long
#define append push_back
#define pii pair<int,int>
#define all(x) (x).begin(),(x).end()
mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
int ran(){
ll o=rng();
o%=2;
o=(o+2)%2;
return o;
}
void exploreCave(int n){
int m,o,p,q,r,s[n],t[n],d[n];
for(int i=0;i<n;i++)
s[i]=d[i]=-1;
m=0;
while(m<n){
for(int j=0;j<1028;j++){
for(int i=0;i<n;i++)
if(d[i]<0)
s[i]=ran();
o=tryCombination(s);
if(o>=m){
m=o;
for(int i=0;i<n;i++)
t[i]=s[i];
}
if(o==-1){
m=n;
for(int i=0;i<n;i++)
t[i]=s[i];
}
}
for(int i=0;i<n;i++){
if(d[i]>=0) continue;
s[i]=t[i];
t[i]^=1;
o=tryCombination(t);
if(o==-1) o=n;
if(o<m) d[i]=o;
t[i]^=1;
}
}
answer(t,d);
}