# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
204714 | bogdan_ogorodniy | 동굴 (IOI13_cave) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "cave.h"
using namespace std;
const int inf = 1e9 + 7;
int N;
int _S[5001], _P[5001];
// void answer(int a[], int b[]) {
// for (int i = 0; i < N; i++) cout << a[i] << ' '; cout << '\t'; for (int i = 0; i < N; i++) cout << _S[i] << ' '; cout << '\n';
// for (int i = 0; i < N; i++) cout << b[i] << ' '; cout << '\t'; for (int i = 0; i < N; i++) cout << _P[i] << ' '; cout << '\n';
// }
// int tryCombination(int a[]) {
// int ans = 0;
// vector <int> op(N + 1, 0);
// for (int i = 0; i < N; i++) {
// if (_S[i] == a[i]) op[_P[i]] = true;
// }
// while (op[ans++]);
// return ans;
// }
int temp[5001];
void sett(vector <int> s, vector <int> fnd, int pos, int f) {
memset(temp, 0, sizeof temp);
for (int i = 0; i < pos; i++) {
if (!fnd[i]) {
temp[i] = f;
}
}
for (int i = pos; i < s.size(); i++) {
if (!fnd[i]) {
temp[i] = !f;
}
}
}
int s[5001], p[5001];
bool fnd[5001];
void exploreCave(int n) {
for (int i = 0; i < n; i++) {
// find the switch connected with i-th door
// find the switch position 1/0
sett(s, fnd, n, 1);
int k = tryCombination(temp);
// in (fnd) -- already used swithces
bool f = 0;
if (k >= i + 1) {
f = true;
}
else {
f = false;
}
int l = 0,
r = n - 1;
while (r - l > 1) {
int m = (l + r) / 2;
sett(s, fnd, m + 1, f);
int k = tryCombination(temp);
if (k >= i + 1) {
r = m;
}
else {
l = m;
}
}
sett(s, fnd, l + 1, f);
k = tryCombination(temp);
if (k >= i + 1) {
p[l] = i;
s[l] = f;
fnd[l] = true;
}
else {
p[r] = i;
s[r] = f;
fnd[r] = true;
}
}
answer(s, p);
}
// signed main() {
// N = 10;
// for (int i = 0; i < N; i++) {
// _P[i] = i;
// }
// random_shuffle(_P, _P + N);
// for (int i = 0; i < N; i++) {
// srand(time(nullptr));
// _S[i] = rand() % 2;
// }
// exploreCave(N);
// return 0;
// }