Submission #859412

#TimeUsernameProblemLanguageResultExecution timeMemory
859412kimRarest Insects (IOI22_insects)C++17
98.10 / 100
41 ms1816 KiB
#include "insects.h" #include<bits/stdc++.h> using namespace std; #define in move_inside #define press press_button #define out move_outside set<int> mp,mp2,mp3; int n,p; bool check(int k1){ stack<int> st; for(int i=0;i<n;++i){ if(mp.size()==p*k1) break; if(mp.count(i)) continue; if(mp3.count(i)) continue; in(i); if(press()>k1) out(i); else mp.insert(i),st.push(i); } if(mp.size()==p*k1){ for(auto &e:mp) if(mp2.count(e)) mp2.erase(e); return 1; } stack<int> st2; for(auto &e:mp2){ if(!mp.count(e)) st2.push(e); } while(!st2.empty()){ mp2.erase(st2.top()); mp3.insert(st2.top()); st2.pop(); } while(st.size()){ mp.erase(st.top()); out(st.top()); st.pop(); } return 0; } int min_cardinality(int N){ n=N; for(int i=0;i<n;++i){ in(i); if(press()>1) out(i),mp2.insert(i); else mp.insert(i); } p=mp.size(); int l=1,r=n/p; while(l<r){ if(r==l+1){ if(check(r)) return r; return l; } if(r==l+2){ if(check(r)) return r; if(check(l+1)) return l+1; return l; } int sz=(r-l)/3; int mid1=l+sz; int mid2=r-sz; if(check(mid2)) l=mid2; else if(check(mid1)) l=mid1,r=mid2-1; else r=mid1-1; } return l; }

Compilation message (stderr)

insects.cpp: In function 'bool check(int)':
insects.cpp:16:21: warning: comparison of integer expressions of different signedness: 'std::set<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
   16 |         if(mp.size()==p*k1) break;
      |            ~~~~~~~~~^~~~~~
insects.cpp:23:17: warning: comparison of integer expressions of different signedness: 'std::set<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
   23 |     if(mp.size()==p*k1){
      |        ~~~~~~~~~^~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...