# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
859317 | kim | Rarest Insects (IOI22_insects) | C++17 | 98 ms | 1824 KiB |
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 "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,k0;
bool check(int k1){
stack<int> st;
for(int i=0;i<n;++i){
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){
k0=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);
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |