# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
569587 | Aurora2005 | 동굴 (IOI13_cave) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#include"cave.h";
using namespace std;
void exploreCave(int N){
vector<pair<int,int>> ans(N);
for(int i=0;i<N;i++) ans[i] = make_pair(-1,-1);
for(int i=0;i<N;i++){
vector<int> First(N);
for(int j=0;j<N;j++){
if(ans[j].first == -1) First[j] = 0;
else First[j] = ans[j].second;
}
if(tryCombination(First) == i+1){
int l = 0,r = N;
while(r-l > 1){
int m = (l+r)/2;
vector<int> S(N);
for(int j=0;j<N;j++){
if(ans[j].first){
if(j < m) S[j] = 0;
else S[j] = 1;
}
else S[j] = ans[j].second;
}
if(tryCombination(S) == i+1) r = m;
else l = m;
}
ans[l].first = i+1;
ans[l].second = 1;
}
else{
int l = 0,r = N;
while(r-l > 1){
int m = (l+r)/2;
vector<int> S(N);
for(int j=0;j<N;j++){
if(ans[j].first){
if(j < m) S[j] = 0;
else S[j] = 1;
}
else S[j] = ans[j].second;
}
if(tryCombination(S) == i+1) l = m;
else r = m;
}
ans[l].first = i+1;
ans[l].second = 0;
}
}
vector<int> ansS(N),ansD(N);
for(int i=0;i<N;i++){
ansS[i] = ans[i].second;
ansD[i] = ans[i].first;
}
answer(ansS,ansD);
}