# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1024505 | vjudge1 | Rarest Insects (IOI22_insects) | C++17 | 186 ms | 1160 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 <bits/stdc++.h>
using namespace std;
typedef long long ll;
pair<int, int> pii;
const int maxn = 1e5 + 100;
int n, d;
int used[maxn];
int f[maxn];
void move_inside(int i);
void move_outside(int i);
int press_button();
void add(int i){
used[i] = 1;
move_inside(i);
}
void del(int i){
used[i] = 0;
move_outside(i);
}
void clear(){
for(int i = 1; i <= n; i++){
if(used[i]) del(i);
}
}
bool ok(int k){
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |