# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
280413 | amalla | Combo (IOI18_combo) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "combo.h"
#include<bits/stdc++.h>
using namespace std;
string guess_sequence(int N) {
if (press("A")) {
string M = "BXY", S = "A", control;
if (N==1) return S;
for (int i = 0; i<N-1; ++i) {
control = S+M[0]+M[0];
control += S+M[0]+M[1];
control += S+M[0]+M[2];
control += S+M[1];
int coins = press(control);
if (coins==S.size()) S+=M[2];
else if (coins==S.size()+1) S+=M[1];
else S+=M[0];
}
}
else if (press("B")) {
string M = "AXY", S = "B", control;
if (N==1) return S;
for (int i = 0; i<N-1; ++i) {
control = S+M[0]+M[0];
control += S+M[0]+M[1];
control += S+M[0]+M[2];
control += S+M[1];
int coins = press(control);
if (coins==S.size()) S+=M[2];
else if (coins==S.size()+1) S+=M[1];
else S+=M[0];
}
}
else if (press("X")) {
string M = "ABY", S = "X", control;
if (N==1) return S;
for (int i = 0; i<N-1; ++i) {
control = S+M[0]+M[0];
control += S+M[0]+M[1];
control += S+M[0]+M[2];
control += S+M[1];
int coins = press(control);
if (coins==S.size()) S+=M[2];
else if (coins==S.size()+1) S+=M[1];
else S+=M[0];
}
}
else {
string M = "ABX", S = "Y", control;
if (N==1) return S;
for (int i = 0; i<N-1; ++i) {
control = S+M[0]+M[0];
control += S+M[0]+M[1];
control += S+M[0]+M[2];
control += S+M[1];
int coins = press(control);
if (coins==S.size()) S+=M[2];
else if (coins==S.size()+1) S+=M[1];
else S+=M[0];
}
}
return S;
}