# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
967274 | AlesL0 | 콤보 (IOI18_combo) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
string guess_sequence(int N){
string sol = "";
vector <char> c = {'a', 'b', 'x', 'y'};
int missing;
if (press("ab")){
if (press("a"))missing = 0;
else missing = 1;
}
else {
if (press("x"))missing = 2;
else missing = 3;
}
c.erase(c.begin()+missing);
while (sol.size() < N){
if (sol.size() + 1 == N){
string t = sol;
t += c[0];
t += sol;
t += c[1];
if (press(t) == N){
t = sol;
t += c[0];
if (press(t))sol += c[0];
else sol += c[1];
}
else sol += c[2];
}
else {
string t = sol;
t += c[0];
t += c[0];
t += sol;
t += c[0];
t += c[1];
t += sol;
t += c[0];
t += c[2];
t += sol;
t += c[1];
int x = press(t);
if (x == sol.size())sol += c[2];
else if (x == sol.size()+1)sol += c[1];
else sol += c[0];
}
}
return sol;
}