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