# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
204458 | bogdan_ogorodniy | 콤보 (IOI18_combo) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
// #include "combo.h"
using namespace std;
string need;
// int press(string p) {
// string s = need + "#" + p;
// int n = (int) s.length();
// vector<int> pi (n);
// for (int i = 1; i < n; ++i) {
// int j = pi[i - 1];
// while (j > 0 && s[i] != s[j])
// j = pi[j - 1];
// if (s[i] == s[j]) ++j;
// pi[i] = j;
// }
// int ans = 0;
// for (int i = need.size(); i < s.size(); i++) {
// ans = max(ans, pi[i]);
// }
// cout << s << '\t' << ans << '\n';
// return ans;
// }
string make_to(string s, int n) {
for (int i = s.size(); i <= n; i++) {
s.push_back(s[0]);
}
return s;
}
vector <char> ch = {'A', 'B', 'X', 'Y'};
string guess_sequence(int n) {
string ans;
for (int i = 0; i < n; i++) {
int best = 0;
string nans;
vector <char> cc;
for (auto it : ch) {
if (i&&it==ans[0]) continue;
cc.push_back(it);
}
if (cc.size() == 3) {
string tmp1 = ans, tmp2 = ans, tmp3 = ans;
tmp1.push_back(cc[0]);
tmp2.push_back(cc[1]);
tmp3.push_back(cc[2]);
int resp = press(make_to(tmp1, n) + make_to(tmp2, n));
if (resp == i + 1) {
resp = press(make_to(tmp1, n));
if (resp == i + 1) nans = tmp1;
else nans = tmp2;
}
else {
nans = tmp3;
}
}
else {
string tmp1 = ans, tmp2 = ans, tmp3 = ans, tmp4 = ans;
tmp1.push_back(cc[0]);
tmp2.push_back(cc[1]);
tmp3.push_back(cc[2]);
tmp4.push_back(cc[3]);
int resp = press(make_to(tmp1, n) + make_to(tmp2, n));
if (resp == i + 2) {
i++;
nans = tmp1;
nans.push_back(tmp2[0]);
}
else if (resp == i + 1) {
resp = press(make_to(tmp1, n));
if (resp == i + 1) nans = tmp1;
else nans = tmp2;
}
else {
resp = press(make_to(tmp3, n));
if (resp == i + 1) nans = tmp3;
else nans = tmp4;
}
}
ans = nans;
}
return ans;
}
// signed main() {
// cin >> need;
// cout << guess_sequence(need.size());
// return 0;
// }