# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
224728 | ZwariowanyMarcin | 콤보 (IOI18_combo) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define ll long long
#define ld long double
#define pb push_back
#define mp make_pair
#define ss(x) (int) x.size()
#define fi first
#define se second
#define cat(x) cerr << #x << " = " << x << endl
#define rep(i, j, n) for (int i = j; i <= n; ++i)
#define per(i, j, n) for (int i = n; j <= i; --i)
#define all(x) x.begin(), x.end()
using namespace std;
string S = "ABXY", q;
vector <int> res, qw;
int press(string);
/*int press(string s) {
int y;
cin >> y;
return y;
}*/
int ask() {
q.clear();
for (auto it : qw)
q += S[it];
int x = press(q);
qw.clear();
return x;
}
void dod() {
for (auto it : res)
qw.pb(it);
}
string quess_sequence(int n) {
qw = {0, 1};
int a = ask();
if (a == 0) {
qw = {2};
int b = ask();
if (b > 0) res.pb(2);
if (b == 0) res.pb(3);
}
if (a > 0) {
qw = {0};
int b = ask();
if (b > 0) res.pb(0);
if (b == 0) res.pb(1);
}
vector <int> re;
for (int i = 0; i < 4; ++i)
if (i != res[0])
re.pb(i);
for (int i = 2; i < n; ++i) {
dod();
qw.pb(re[0]);
dod();
qw.pb(re[1]);
qw.pb(re[0]);
dod();
qw.pb(re[1]);
qw.pb(re[1]);
dod();
qw.pb(re[1]);
qw.pb(re[2]);
int b = ask();
if (b == i) {
res.pb(re[0]);
}
if (b == i + 1) {
res.pb(re[1]);
}
if (b == i - 1) {
res.pb(re[2]);
}
}
if (n > 1) {
rep(i, 0, 2) {
if (i == 2) {
res.pb(re[2]);
break;
}
dod();
qw.pb(re[i]);
int b = ask();
if (b == n) {
res.pb(re[i]);
break;
}
}
}
string ans = "";
for (auto it : res)
ans += S[it];
return ans;
}
/*
int main() {
return 0;
}
*/