# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
859317 | kim | 드문 곤충 (IOI22_insects) | C++17 | 98 ms | 1824 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "insects.h"
#include<bits/stdc++.h>
using namespace std;
#define in move_inside
#define press press_button
#define out move_outside
set<int> mp,mp2,mp3;
int n,p,k0;
bool check(int k1){
stack<int> st;
for(int i=0;i<n;++i){
if(mp.count(i)) continue;
if(mp3.count(i)) continue;
in(i);
if(press()>k1) out(i);
else mp.insert(i),st.push(i);
}
if(mp.size()==p*k1){
k0=k1;
for(auto &e:mp) if(mp2.count(e)) mp2.erase(e);
return 1;
}
stack<int> st2;
for(auto &e:mp2){
if(!mp.count(e)) st2.push(e);
}
컴파일 시 표준 에러 (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... |