# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1006656 | devariaota | 콤보 (IOI18_combo) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "combo.h"
using namespace std;
# define int long long
# define fir first
# define sec second
# define pb push_back
# define endl "\n"
std::string guess_sequence(int N) {
char ch[3];
string st;
int asd = press("AB");
if(asd) {
int x = press("A");
if(x) st = "A", ch = {'B', 'X', 'Y'};
else st = "B", ch = {'A', 'X', 'Y'};
}
else {
int x = press("X");
if(x) st = "X", ch = {'A', 'B', 'Y'};
else st = "Y", ch = {'A', 'B', 'X'};
}
for(int i = 2; i<N; i++) {
string now = "";
now += st; now.pb(ch[0]); now.pb(ch[0]);
now += st; now.pb(ch[0]); now.pb(ch[1]);
now += st; now.pb(ch[0]); now.pb(ch[2]);
now += st; now.pb(ch[1]);
int get = press(now);
if(get == i+1) st.pb(ch[0]);
else if(get == i) st.pb(ch[1]);
else st.pb(ch[2]);
}
string st0 = st; st0.pb(ch[0]);
string st1 = st; st1.pb(ch[1]);
string st2 = st; st2.pb(ch[2]);
int x = press(st0);
int y = press(st1);
int z = press(st2);
if(x == N) st.pb(ch[0]);
else if(y == N) st.pb(ch[1]);
else st.pb(ch[2]);
return st;
}