# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
860522 | Erhmee | 콤보 (IOI18_combo) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <string>
#include <vector>
using namespace std;
string guess_sequence(int N) {
vector<char> buttons = {'A', 'B', 'X', 'Y'};
string secret_string = "";
// Define a function to check if a given sequence appears in the secret string.
auto check_sequence = [&](string sequence) {
return press(secret_string + sequence) > secret_string.length();
};
for (int i = 0; i < N; ++i) {
bool found = false;
for (char button : buttons) {
if (secret_string.find(button) == string::npos) {
if (check_sequence(string(1, button))) {
secret_string += button;
found = true;
break;
}
}
}
if (!found) {
// Handle error, as you cannot find the next character in the secret string
throw runtime_error("Cannot find the next character in the secret string");
}
}
return secret_string;
}