# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
628146 | qwerasdfzxcl | Rarest Insects (IOI22_insects) | C++17 | 63 ms | 552 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;
typedef long long ll;
mt19937 rng(1557);
vector<int> P;
set<int> qst, cd;
int n, t;
bool ins(int x){
bool ret = qst.insert(x).second;
if (ret) move_inside(P[x-1]);
return ret;
}
bool del(int x){
if (qst.find(x)==qst.end()) return 0;
qst.erase(x);
move_outside(P[x-1]);
return 1;
}
void get_type(){
for (int i=1;i<=n;i++){
ins(i);
if (press_button()>1) del(i);
}
t = qst.size();
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |