# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
546225 | LunaMeme | 동굴 (IOI13_cave) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "cave.h"
#include <bits/stdc++.h>
using namespace std;
typedef pair<int, int> ii;
typedef vector<pair<int, int>> vii;
typedef vector<int> vi;
typedef long long ll;
#define PB push_back
#define MP make_pair
#define FOR(i, x, y) for (int i = x; i < y ; i ++)
/*int N;
vi S, D, C;
void answer(vi A, vi B)
{
for(int i = 0; i < N; i ++)
cout << A[i] << ' ';
cout << '\n';
for(int i = 0; i < N; i ++)
cout << B[i] << ' ';
}
int tryCombination(vi A)
{
for(int door = 0; door < N;door ++)
{
if(A[C[door]] != S[C[door]])
return door;
}
return -1;
}*/
int opp(int d){
if (d == 1)return 0;
return 1;
}
void exploreCave(int N) {
vi arr(N, -1);
vi ans(N);
FOR(i, 0, N){ //door
vi temp(N);
FOR(k, 0, N){
if (arr[k] == -1)temp[k] = 0;
else temp[k] = arr[k];
}
int j = tryCombination(temp);
int d = 0; //d is colour of i th switch
if (j <= i && j > -1){
d = 1;
}
//binary search
FOR(k, 0, N){
if (arr[k] == -1)temp[k] = d;
else temp[k] = arr[k];
}
int l = 0, r = N - 1;
while(l < r){
int m = (l + r) / 2;
FOR(k, l, m + 1){
if (arr[k] == -1)
temp[k] = opp(d);
else temp[k] = arr[k];
}
FOR(k, 0, N){
cout << temp[k] << ' ';
}
cout << '\n';
j = tryCombination(temp);
if (j > i || j == -1) //passes
{
l = m + 1;
}
else{
r = m;
}
FOR(k, 0, N){
if (arr[k] == -1)temp[k] = d;
else temp[k] = arr[k];
}
}
assert(l == r);
//cout << "Door " << i << " connects to switch " << l << '\n';
//assert(arr[l] == -1);
arr[l] = d;
ans[l] = i;
}
answer(arr, ans);
}
/*int main()
{
ios::sync_with_stdio(false);
cin.tie(0); cout.tie(0);
cin >> N;
S.assign(N,0); D.assign(N,0);
C.assign(N,0);
for(int i = 0; i < N; i ++)
cin >> S[i];
for(int i = 0; i < N; i ++)
cin >> D[i];
for(int i = 0; i < N; i ++)
C[D[i]] = i;
exploreCave(N);
}
*/