# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
900126 | Omar_Elgedawy | 콤보 (IOI18_combo) | C++17 | 22 ms | 1768 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "combo.h"
#include <bits/stdc++.h>
using namespace std;
mt19937 mt(time(nullptr));
string guess_sequence(int n) {
vector<char> chr;
chr.push_back('A');
chr.push_back('B');
chr.push_back('X');
chr.push_back('Y');
string cur = "";
for (int i = 0; i < 4; i++) {
cur=chr[i];
if (press(cur)) {
break;
}
}
for (int i = 2; i <= n; i++) {
string tst[3] = {cur, cur, cur};
for (int k = 0, j = 0; j < 4; j++) {
if (chr[j] == cur[0]) {
continue;
}
tst[k] += chr[j];
k++;
}
int f = mt() % 3;
int s = mt() % 3;
int th = 0;
while (s == f)s = mt() % 3;
for (int k = 0; k < 3; k++) {
if (k != f && k != s) {
th = k;
break;
}
}
// cout<<tst[f]<<' '<<tst[s]<<endl;
if (press(tst[f] + tst[s]) == tst[f].size()) {
if (press(tst[f]) == tst[f].size()) {
cur += tst[f].back();
} else
cur += tst[s].back();
} else {
cur += tst[th].back();
}
}
// cout<<cur<<el;
return cur;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |