# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
87149 | AlexPop28 | 콤보 (IOI18_combo) | C++11 | 51 ms | 560 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define all(cont) cont.begin(), cont.end()
#define pb push_back
#define fi first
#define se second
#define DEBUG(x) cerr << (#x) << ": " << (x) << '\n'
#include "combo.h"
using namespace std;
typedef pair <int, int> pii;
typedef vector <int> vi;
typedef long long ll;
typedef unsigned long long ull;
string guess_sequence (int N) {
string p = "", cand = "", s;
int aux;
p = press ("AB") ? (press ("A") ? "A" : "B") : (press ("X") ? "X" : "Y");
for (char c : "ABXY") {
if (c == p[0]) continue;
cand += c;
}
if (p.size() == N) return p;
for (int i = 2; i <= N - 1; ++i) {
s = p + cand[0] + p + cand[1] + cand[0] + p + cand[1] + cand[1] + p + cand[1] + cand[2];
aux = press (s);
if (aux == i - 1) {
p += cand[2];
} else if (aux == i) {
p += cand[0];
} else {
p += cand[1];
}
}
for (int i = 0; i < 2; ++i) {
aux = press (p + cand[i]);
if (aux == N) return (p + cand[i]);
}
return (p + cand[2]);
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |