# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
982360 | batsukh2006 | 콤보 (IOI18_combo) | C++17 | 1 ms | 544 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "combo.h"
#include<bits/stdc++.h>
using namespace std;
string guess_sequence(int N){
string t="ABXY",ans="";
for(int i=0; i<3; i++){
string r="";
r+=t[i];
if(press(r)) ans+=t[i];
}
string s="";
if(ans.size()==0) ans+=t[3];
for(int i=0; i<4; i++){
string r="";
r+=t[i];
if(r!=ans) s+=t[i];
}
for(int i=1; i<N-1; i++){
string tmp="";
tmp+=ans+s[0];
tmp+=ans+s[1]+s[0];
tmp+=ans+s[1]+s[1];
tmp+=ans+s[1]+s[2];
int lst=ans.size();
int find=press(tmp);
if(find==lst) ans+=s[2];
else if(find==lst+1) ans+=s[0];
else ans+=s[1];
}
bool ok=0;
for(int i=0; i<2; i++){
string r=ans;
r+=s[i];
if(press(r)>ans.size()) ans+=s[i],ok=1;
}
if(!ok) ans+=s[2];
return ans;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |