제출 #1057887

#제출 시각아이디문제언어결과실행 시간메모리
1057887SalihSahin드문 곤충 (IOI22_insects)C++17
25 / 100
194 ms856 KiB
#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) {
   vector<int> wh, nxtwh;
   vector<int> cik;

   int sz = 0;
   for(int i = 0; i < N; i++){
      move_inside(i);
      sz++;
      int val = press_button();
      if(val == 2){
        move_outside(i);
        wh.pb(i);
        sz--;
      }
      else cik.pb(i);
   }

   for(auto itr: cik){
    move_outside(itr);
   }
   cik.clear();

   if(sz > 45){
        int ans = 1;
        while(1){
           random_shuffle(wh.begin(), wh.end());
           int isz = 0;
           for(auto itr: wh){
              if(isz < sz){
                  move_inside(itr);
                  isz++;
                  int val = press_button();
                  if(val == 2){
                    move_outside(itr);
                    nxtwh.pb(itr);
                    isz--;
                  }
                  else cik.pb(itr);
              }
              else{
                  nxtwh.pb(itr);
              }
           }

           for(auto itr: cik) move_outside(itr);
           cik.clear();

           if(isz != sz){
              break;
           }
           else{
              ans++;
              wh = nxtwh;
              nxtwh.clear();
           }
       }

       return ans;
   }
   else{
      wh.clear();
      nxtwh.clear();
      for(int i = 0; i < N; i++){
          wh.pb(i);
      }
      random_shuffle(wh.begin(), wh.end());

      int sz = 0, ans = 2000;

      while(wh.size() > 0){
         sz = 0;
         for(auto itr: wh){
              move_inside(itr);
              sz++;
              int val = press_button();
              if(val != sz){
                move_outside(itr);
                nxtwh.pb(itr);
                sz--;
              }
              else cik.pb(itr);
          }
          ans = min(ans, sz);
          wh = nxtwh;
          for(auto itr: cik) move_outside(itr);
          cik.clear();
          nxtwh.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;
}
*/
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...