# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
628166 | sword060 | 드문 곤충 (IOI22_insects) | C++17 | 0 ms | 208 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "insects.h"
using namespace std;
void move_inside(int);
void move_outside(int);
int press_button();
int min_cardinality(int x) {
map<int,int>mp;
int ans=1e9,lst=1;
for(int i=0;i<x;i++)move_inside(i);
int z=press_button();
ans=z;
while(mp.size()!=x){
for(int i=0;i<x;i++){
if(mp[i])continue;
move_outside(i);
int c=press_button();
if(c!=z){
mp[i]=1;
for(int j=i-1;j>=0;j--){
move_inside(j);
if(press_button()!=c){
mp[j]=1;
}else{
move_inside(j);
}
}
z=c;ans=min(ans,c);
break;
}
}
}
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... |