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