# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
548995 | Leo121 | 동굴 (IOI13_cave) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "cave.h"
#define forn(i, a, b) for(int i = int(a); i <= int(b); ++ i)
using namespace std;
vector<int> nores;
void inicializar(int &arre[], const int &n, int &posiciones[], int &estado[]){
forn(i, 0, n){
arre[i] = (posiciones[i] == -1) ? 0 : estado[i];
if(posiciones[i] == -1){
nores.push_back(i);
}
}
}
void actualizar(int li, int ls, int mitad, int &arre[]){
forn(i, li, ls){
arre[nores[i]] = (i <= mitad) ? 1 : 0;
}
}
void bs(int pos, const int &n, int &posiciones[], int &estado[]){
int li = 0, ls = n - pos - 1, mitad;
int prueba[n + 1];
nores.clear();
inicializar(prueba, n, posiciones, estado);
int aux = tryCombination(prueba);
if(!ls){
posiciones[pos] = nores[ls];
estado[pos] = (aux == -1) ? 0 : 1;
return;
}
bool saber = (aux == pos);
while(li < ls){
mitad = (li + ls) / 2;
actualizar(li, ls, mitad, prueba);
aux = tryCombination(prueba);
if((saber && aux == pos) || (!saber && aux != pos)){
li = mitad + 1;
}
else{
ls = mitad;
}
}
posiciones[pos] = nores[li];
estado[pos] = (int) saber;
}
void exploreCave(int N) {
int posiciones[N];
int estado[N];
forn(i, 0, N - 1){
posiciones[i] = -1;
estado[i] = 0;
}
forn(i, 0, N - 1){
bs(i, N, posiciones, estado);
}
answer(estado, posiciones);
}