# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
402743 | luisgalan | 콤보 (IOI18_combo) | C++14 | 2 ms | 256 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#include "combo.h"
using namespace std;
#define debug(x) cerr << #x << " = " << (x) << endl
char chars[4] = {'A', 'B', 'X', 'Y'};
string guess_sequence(int N) {
string res = "";
char init;
if (press("AB")) {
init = press("A") ? 'A' : 'B';
} else {
init = press("X") ? 'X' : 'Y';
}
res += init;
vector<char> others;
vector<string> others_s;
for (int i = 0; i < 4; i++) {
if (chars[i] == init) continue;
others.push_back(chars[i]);
others_s.push_back(string(1, chars[i]));
}
while (res.size() + 1 < N) {
string query = "";
query += res + others_s[0] + others_s[0];
query += res + others_s[0] + others_s[1];
query += res + others_s[0] + others_s[2];
query += res + others_s[1];
// debug(query);
int delta_coins = press(query) - res.size();
// debug(delta_coins);
if (delta_coins == 2) {
res += others_s[0];
} else if (delta_coins == 1) {
res += others_s[1];
} else {
res += others_s[2];
}
// debug(res);
}
if (press(res + others_s[0] + res + others_s[1]) > res.size()) {
if (press(res + others_s[0]) > res.size()) {
res += others_s[0];
} else {
res += others_s[1];
}
} else {
res += others_s[2];
}
// debug(res);
return res;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |