# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
349118 | spike1236 | 콤보 (IOI18_combo) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "combo.h"
using namespace std;
bool check(char x) {
string s = "";
s += x;
int cnt = press(s);
if(cnt > 1 || !cnt) return 0;
return 1;
}
string guess_sequence(int n) {
string cur = "";
set <char> st;
st.insert('A');
st.insert('B');
st.insert('X');
st.insert('Y');
if(check('A')) cur = "A", st.erase('A');
else if(check('B')) cur = "B", st.erase('B');
else if(check('X')) cur = "X", st.erase('X');
else cur = "Y", st.erase('Y');
auto it = st.begin();
vector <char> a;
a.pb(*it);
++it;
a.pb(*it);
++it;
a.pb(*it);
for(int i = 1; i < n; ++i) {
veci was(3);
for(int j = 0; j < 2; ++j) {
int key = rand() % 3;
while(was[key]) key = rand() % 3;
if(press(cur + a[key]) == i + 1) {
cur += a[key];
break;
}
was[key] = 1;
}
}
return cur;
}