This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include<bits/stdc++.h>
#include "insects.h"
#define pb push_back
using namespace std;
/*
static inline constexpr int kMaxQueries = 40000;
static int N;
// Insect types are compressed to colors in the range [0, N).
static std::vector<int> color;
static std::vector<bool> in_box;
static std::vector<int> color_occurrences;
static std::multiset<int> max_occurrences;
static std::vector<int> op_counter(3, 0);
static inline void protocol_violation(std::string message) {
printf("Protocol Violation: %s\n", message.c_str());
exit(0);
}
void move_inside(int i) {
if (i < 0 || i >= N) {
protocol_violation("invalid parameter");
}
++op_counter[0];
if (op_counter[0] > kMaxQueries) {
protocol_violation("too many calls");
}
if (!in_box[i]) {
in_box[i] = true;
max_occurrences.erase(max_occurrences.find(color_occurrences[color[i]]));
++color_occurrences[color[i]];
max_occurrences.insert(color_occurrences[color[i]]);
}
}
void move_outside(int i) {
if (i < 0 || i >= N) {
protocol_violation("invalid parameter");
}
++op_counter[1];
if (op_counter[1] > kMaxQueries) {
protocol_violation("too many calls");
}
if (in_box[i]) {
in_box[i] = false;
max_occurrences.erase(max_occurrences.find(color_occurrences[color[i]]));
--color_occurrences[color[i]];
max_occurrences.insert(color_occurrences[color[i]]);
}
}
int press_button() {
++op_counter[2];
if (op_counter[2] > kMaxQueries) {
protocol_violation("too many calls");
}
return *(max_occurrences.rbegin());
}
*/
int min_cardinality(int N) {
mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
vector<int> cik;
int colcnt = 0;
for(int i = 0; i < N; i++){
move_inside(i);
colcnt++;
int val = press_button();
if(val == 2){
move_outside(i);
colcnt--;
}
else cik.pb(i);
}
for(auto itr: cik){
move_outside(itr);
}
cik.clear();
vector<int> rem, nrem;
for(int i = 0; i < N; i++){
rem.pb(i);
}
int bt = 0, x = 1;
while(2 * x - 1 < N/colcnt){
x *= 2;
bt++;
}
int ans = 0, cntnxt = 0;
for(int i = bt; i >= 0; i--){
int val = (1 << i);
vector<int> out;
int cnt = cntnxt;
for(int j = 0; j < cntnxt; j++){
nrem.pb(rem[j]);
}
for(int j = cntnxt; j < rem.size(); j++){
int it = rem[j];
cnt++;
move_inside(it);
int check = press_button();
if(check > ans + val){
move_outside(it);
out.pb(it);
cnt--;
}
else nrem.pb(it);
}
cntnxt = 0;
if(cnt == colcnt * val){
ans += val;
rem = out;
}
else{
if(!i){
for(auto itr: nrem) move_outside(itr);
rem = nrem;
}
else{
int nval = val / 2;
if(nrem.size() > nval){
cntnxt = nval;
for(int i = nval; i < nrem.size(); i++){
move_outside(nrem[i]);
}
rem = nrem;
}
else{
for(auto itr: nrem) move_outside(itr);
rem = nrem;
}
}
}
nrem.clear();
}
return ans;
}
/*
int main() {
assert(1 == scanf("%d", &N));
color.resize(N);
in_box.assign(N, false);
std::map<int, int> type_to_color;
for (int i = 0; i < N; ++i) {
int Ti;
assert(1 == scanf("%d", &Ti));
if (type_to_color.find(Ti) == type_to_color.end()) {
int new_color = type_to_color.size();
type_to_color[Ti] = new_color;
max_occurrences.insert(0);
}
color[i] = type_to_color[Ti];
}
color_occurrences.assign(type_to_color.size(), 0);
int answer = min_cardinality(N);
int Q = *std::max_element(op_counter.begin(), op_counter.end());
printf("%d\n", answer);
printf("%d\n", Q);
return 0;
}
*/
Compilation message (stderr)
insects.cpp: In function 'int min_cardinality(int)':
insects.cpp:104:29: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
104 | for(int j = cntnxt; j < rem.size(); j++){
| ~~^~~~~~~~~~~~
insects.cpp:129:27: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
129 | if(nrem.size() > nval){
| ~~~~~~~~~~~~^~~~~~
insects.cpp:131:34: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
131 | for(int i = nval; i < nrem.size(); i++){
| ~~^~~~~~~~~~~~~
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |