이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "insects.h"
#include <bits/stdc++.h>
using namespace std;
const int M = 2005;
int P[M], chk[M], mst[M], exc[M], cnt;
int IN(int x) { x = P[x];
if(chk[x]) return 0;
chk[x] = 1;
cnt++;
move_inside(x);
return 1;
}
int OUT(int x) { x = P[x];
if(!chk[x]) return 0;
chk[x] = 0;
cnt--;
move_outside(x);
return 1;
}
int GET() { return press_button(); }
int min_cardinality(int N) {
mt19937 mt(chrono::high_resolution_clock::now().time_since_epoch().count());
iota(P, P + N, 0);
shuffle(P, P + N, mt);
IN(0);
for(int i = 1; i < N; i++) {
IN(i);
if(GET() != 1) OUT(i);
}
int K = cnt;
if(K == 1) return N;
for(int i = 0; i < N; i++) mst[i] = chk[i];
int L = 1, R = N / K, C = 1;
while(L < R) {
int M = (L + R) / 2;
int lft = 0;
for(int i = 0; i < N; i++) if(!exc[i] && !chk[P[i]]) lft++;
for(int i = 0, j = 0; i < N; i++) if(!exc[i]) {
if(cnt + lft < (M + 1) * K) break;
if(IN(i)) {
lft--;
if(!(++j <= M + 1 - C) && GET() > M + 1) OUT(i);
}
if(cnt == (M + 1) * K) break;
}
if(cnt == (M + 1) * K) {
for(int i = 0; i < N; i++) mst[i] = chk[i];
L = C = M + 1;
}
else {
for(int i = 0; i < N; i++) if(!mst[P[i]]) if(!OUT(i)) exc[i] = 1;
R = M;
}
}
return L;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |