# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1006865 | adrielcp | 콤보 (IOI18_combo) | C++17 | 29 ms | 1116 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "combo.h"
#include <bits/stdc++.h>
using namespace std;
#define all(x) x.begin(), x.end()
// int press(string hm) {
// cout << hm << endl;
// int ans;cin>>ans;
// return ans;
// }
string S = "ABXY";
char getpatokan() {
int res1 = press("AB"), res2 = press("BX");
if (res1 && res2) return 'B';
else if (res1) return 'A';
else if (res2) return 'X';
else return 'Y';
}
// ABXYBYYXB
// patokan: A
// BXYBYYXB
// ABAX
// AXAY
//
string guess_sequence(int n) {
char patokan = getpatokan();
set<char> st{'A', 'B', 'X', 'Y'};
st.erase(patokan);
string now;
now += patokan;
for (int i = 0; i < n-1; i++) {
auto it = st.begin();
int idx = rand()%3;
char gok = 'O';
char top;
for (int j = 0; j < 3; j++) {
char x = *it;
it++;
if (j == idx) {
top = x;
continue;
}
if (press(now + x) == now.length()+1) {
gok = x;
break;
}
}
if (gok == 'O') now += top;
else now += gok;
}
return now;
}
// int main() {
// int n;cin>>n;
// cout << guess_sequence(n) << endl;
// }
// string guess_sequence(int N) {
// string permu = "AAAABBBBXXXXYYYY";
// do {
// cout << permu << endl;
// } while (next_permutation(all(permu)));
// }
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |