# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
154063 | nthoang | 콤보 (IOI18_combo) | C++11 | 94 ms | 436 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#ifndef LOCAL
#include "combo.h"
#endif
#ifdef LOCAL
#include "/Users/nth842002/Library/debug.h"
int press(string p) { }
int main() { }
#endif
using namespace std;
const string moves = "ABXY";
string guess_sequence(int n) {
srand(time(0));
string s;
for (int i = 0; i < 3; i++) {
string t;
t += moves[i];
if (press(t) == 1) {
s += moves[i];
break;
}
}
if (s.empty()) {
s += moves[3];
}
string avail;
for (int i = 0; i < 4; i++) {
if (moves[i] != s[0]) {
avail += moves[i];
}
}
for (int i = 1; i < n; i++) {
random_shuffle(avail.begin(), avail.end());
for (int j = 0; j < 2; j++) {
s += avail[j];
if (press(s) == i + 1) {
break;
}
s.pop_back();
}
if (s.length() == i) {
s += avail[2];
}
}
assert((int) s.length() == n);
return s;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |