# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
786547 | JoenPoenMan | 콤보 (IOI18_combo) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "grader.cpp"
#include "combo.h"
#include <bits/stdc++.h>
using namespace std;
typedef pair<int, int> ii;
vector<char> chars = {'X', 'Y', 'A', 'B'};
string Sol;
std::string guess_sequence(int N) {
if (press("AB") >= 1) Sol = (press("A") ? "A" : "B");
else Sol = (press("X") ? "X" : "Y");
chars.erase(find(chars.begin(), chars.end(), Sol[0]));
for (int i = 1; i < N-1; i++) {
string inp;
inp += Sol + chars[0];
inp += Sol + chars[1] + chars[0];
inp += Sol + chars[1] + chars[1];
inp += Sol + chars[1] + chars[2];
int res = press(inp);
if (res == Sol.length()) Sol.push_back(chars[2]);
else if (res == Sol.length()+1) Sol.push_back(chars[0]);
else Sol.push_back(chars[1]);
}
string inp;
inp = Sol + chars[0] + Sol + chars[1];
if (press(inp) == Sol.length()) Sol.push_back(chars[2]);
else {
inp = Sol + chars[0];
if (press(inp) == Sol.length()) Sol.push_back(chars[1]);
else Sol.push_back(chars[0]);
}
return Sol;
}