# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
631749 | AmirElarbi | 드문 곤충 (IOI22_insects) | C++17 | 188 ms | 412 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "insects.h"
#include <bits/stdc++.h>
#define ve vector
#define vi ve<int>
#define ii pair<int,int>
#define ll long long
#define vvi ve<vi>
#define se second
#define fi first
#define pb push_back
using namespace std;
const int nax = 2e3+5;
const int MOD = 1e9+7;
int pref[nax];
int min_cardinality(int n) {
int type = 0;
for (int i = 0; i < n; ++i)
{
move_inside(i);
int a = press_button();
if(a == 1)
type++;
else
move_outside(i);
pref[i] = type;
}
for (int i = 0; i < n; ++i)
{
move_outside(i);
}
int l = 1,r = n/type+1, ans = 0;
vi cur, vis(n);
while(l< r){
int md = (l+r)/2;
for (int i = 0; i < n; ++i)
{
if(vis[i]) continue;
move_inside(i);
int a = press_button();
if(a > md){
move_outside(i);
} else {
cur.pb(i);
}
}
if(type*md == cur.size()){
for(auto x : cur) vis[x] = 1;
l = md+1; ans = md;
} else {
r = md;
vi nw;
for (auto i : cur)
{
if(vis[i]){
nw.pb(i);
continue;
}
move_outside(i);
}
cur.clear();
for(auto x : nw) cur.pb(x);
}
}
return ans;
}
컴파일 시 표준 에러 (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... |