제출 #776855

#제출 시각아이디문제언어결과실행 시간메모리
776855Sandarach151동굴 (IOI13_cave)C++17
0 / 100
176 ms444 KiB
#include "cave.h" #include<bits/stdc++.h> using namespace std; void exploreCave(int n) { pair<int, int> curans[n] = {{-1, -1}}; // for each door, what is switch number and position for(int i=0; i<n; i++){ int arr[n]; for(int j=0; j<n; j++){ arr[j]=-1; } vector<int> rest; int spos; for(int j=0; j<i; j++){ arr[curans[j].first]=curans[j].second; } for(int j=0; j<n; j++){ if(arr[j]==-1){ arr[j]=0; rest.push_back(j); } } tryCombination(arr)>i ? spos = 0 : spos = 1; if(spos==0){ int lb = 0; int ub = rest.size()-1; while(lb!=ub){ int mid = (lb+ub)/2; for(int j=lb; j<=mid; j++){ arr[rest[j]]=0; } for(int j=mid+1; j<=ub; j++){ arr[rest[j]]=1; } int temp = tryCombination(arr); temp>i || temp==-1 ? ub = mid : lb = mid+1; } curans[i]={rest[lb], spos}; } else{ int lb = 0; int ub = rest.size()-1; while(lb!=ub){ int mid = (lb+ub)/2; for(int j=lb; j<=mid; j++){ arr[rest[j]]=1; } for(int j=mid+1; j<=ub; j++){ arr[rest[j]]=0; } int temp = tryCombination(arr); temp>i || temp==-1 ? ub = mid : lb = mid+1; } curans[i]={rest[lb], spos}; } } int ans1[n]; int ans2[n]; for(int i=0; i<n; i++){ ans1[curans[i].first] = i; ans2[curans[i].first] = curans[i].second; } answer(ans2, ans1); }
#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...