# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
133180 | nxteru | 콤보 (IOI18_combo) | C++14 | 67 ms | 536 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "combo.h"
#include <bits/stdc++.h>
using namespace std;
string ans;
char c[3],d[4]={'A','B','X','Y'};
bool u[4];
string q;
string guess_sequence(int n){
q+=d[0];
q+=d[1];
if(press(q)>=1){
q.pop_back();
if(press(q)>=1)u[0]=true;
else u[1]=true;
}else{
q.clear();
q.push_back(d[2]);
if(press(q)>=1)u[2]=true;
else u[3]=true;
}
int k=0;
for(int i=0;i<4;i++){
if(!u[i])c[k++]=d[i];
else ans.push_back(d[i]);
}
for(int i=2;i+1<=n;i++){
q.clear();
q+=ans;
q.push_back(c[0]);
for(int j=0;j<3;j++){
q+=ans;
q.push_back(c[1]);
q.push_back(c[j]);
}
int s=press(q);
if(s==i-1)ans.push_back(c[2]);
else if(s==i)ans.push_back(c[0]);
else ans.push_back(c[1]);
}
if(ans.size()==n){
ans.push_back('\0');
return ans;
}
q.clear();
q+=ans;
q.push_back(c[0]);
q+=ans;
q.push_back(c[1]);
if(press(q)==n){
q.clear();
q+=ans;
q.push_back(c[0]);
if(press(q)==n)ans.push_back(c[0]);
else ans.push_back(c[1]);
}else ans.push_back(c[2]);
ans.push_back('\0');
return ans;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |