이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "insects.h"
//GRT_2018
#include <bits/stdc++.h>
#define PB push_back
#define ST first
#define ND second
//mt19937 rng(chrono::high_resolution_clock::now().time_since_epoch().count());
using namespace std;
using ll = long long;
using pi = pair<int,int>;
using vi = vector<int>;
const int nax = 2010;
bool discarded[nax];
mt19937 rng(104910);
int baseLength(vi &v) {
vi taken = {};
shuffle(v.begin(), v.end(), rng);
for(int x : v) {
move_inside(x);
taken.PB(x);
int w = press_button();
if(w >= 2) {
move_outside(x);
taken.pop_back();
}
}
for(int x : taken) {
move_outside(x);
discarded[x] = true;
}
return (int)taken.size();
}
int min_cardinality(int n) {
vi allowed = {};
for(int i = 0; i < n; ++i) {
allowed.PB(i);
}
int k = baseLength(allowed);
for(int i = 2; i <= n; ++i) {
allowed.clear();
for(int j = 0; j < n; ++j) {
if(!discarded[j]) {
allowed.PB(j);
}
}
int k2 = baseLength(allowed);
if(k2 < k) {
return i - 1;
}
}
return n;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |