# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
294605 | Autoratch | 콤보 (IOI18_combo) | C++14 | 32 ms | 676 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "combo.h"
#include <bits/stdc++.h>
using namespace std;
string guess_sequence(int n)
{
string ans,ch = "ABXY",tmp;
if(press("XY"))
{
if(press("X")) ans = "X";
else ans = "Y";
}
else
{
if(press("A")) ans = "A";
else ans = "B";
}
if(n==1) return ans;
for(char c : ch) if(c!=ans[0]) tmp+=c;
ch = tmp;
for(int i = 1;i < n-1;i++)
{
tmp = ans+ch[0]+ch[0]+ans+ch[0]+ch[1]+ans+ch[0]+ch[2]+ans+ch[1];
int ret = press(tmp);
if(ret==ans.length()+2) ans+=ch[0];
else if(ret==ans.length()+1) ans+=ch[1];
else ans+=ch[2];
}
if(press(ans+ch[0])==n) return ans+ch[0];
else if(press(ans+ch[1])==n) return ans+ch[1];
else return ans+ch[2];
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |