# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
123054 | khulegub | 콤보 (IOI18_combo) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "combo.h"
#include<bits/stdc++.h>
using namespace std;
string butt[] = {"A", "B", "X", "Y"};
string guess_sequence(int N) {
int f;
string s = "";
if(press("A")) f = 0;
else if(press("B")) f = 1;
else if(press("X")) f = 2;
else f = 3;
s = butt[f];
string asky = s + butt[(f + 1) % 4]
asky += s + butt[(f + 2) % 4] + butt[(f + 1) % 4];
asky += s + butt[(f + 2) % 4] + butt[(f + 2) % 4];
asky += s + butt[(f + 2) % 4] + butt[(f + 3) % 4];
for (int i = 1; i < N; i++){
int x = press(asky);
int nxt;
if (x == s.length() + 1) nxt = (f + 1) % 4;
else if (x == s.length() + 2) nxt = (f + 2) % 4;
else if (x == s.length() ) nxt = (f + 3) % 4;
s += butt[nxt];
}
return s;
}