# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1136365 | Saul0906 | 드문 곤충 (IOI22_insects) | C++20 | 16 ms | 432 KiB |
#include "insects.h"
#include <vector>
#include <bits/stdc++.h>
#define rep(a,b,c) for(ll a=b; a<c; a++)
#define repr(a,b,c) for(ll a=b-1; a>c-1; a--)
#define repa(a,b) for(auto a:b)
#define ll long long
#define pll pair<ll, ll>
#define fi first
#define se second
#define pb push_back
#define mid ((l+r)>>1)
#define ppb pop_back
using namespace std;
using vi = vector<int>;
int min_cardinality(int n) {
vi a, b, c, d;
rep(i,0,n){
move_inside(i);
a.pb(i);
if(press_button()==2){
move_outside(i);
a.ppb();
b.pb(i);
}
}
int l=1, r=n/a.size(), x;
repa(e,a) move_outside(e);
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |