# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
79040 | reda | 콤보 (IOI18_combo) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
char c[4] = {'A', 'B', 'X', 'Y'};
string guess_sequence(int n)
{
string pref;
int t = press("AB");
if(t > 0)
{
int a = press("A");
if(a == 1) pref = "A";
else pref = "B";
}
else
{
int a = press("X");
if(a == 1) pref = "X";
else pref = "Y";
}
if(pref.empty()) pref.push_back(c[3]);
for(int i = 0; i < 4; i++)
if(c[i] == pref[0]) swap(c[i], c[0]);
for(int j = 0; j < n - 2; j++)
{
string aux = pref + c[1] + pref + c[2] + c[3] + pref + c[2] + c[1] + pref + c[2] + c[2];
int ans = press(aux);
if(ans == pref.size() + 1) pref.push_back(c[1]);
else if(ans == pref.size() + 2) pref.push_back(c[2]);
else pref.push_back(c[3]);
}
if(n != 1)
{
for(int i = 1; i < 3; i++)
{
string aux = pref + c[i];
if(press(aux) == pref.size() + 1)
{
return aux;
}
}
pref += c[3];
}
return pref;
}