# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
427665 | daanolav | 콤보 (IOI18_combo) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "combo.h"
#include <string>
using namespace std;
string characters[4];
int press(std::string p) {
int len = p.length();
int coins = 0;
for (int i = 0, j = 0; i < len; ++i) {
if (j < N && S[j] == p[i]) {
++j;
} else if (S[0] == p[i]) {
j = 1;
} else {
j = 0;
}
coins = std::max(coins, j);
}
return coins;
}
std::string guess_sequence(int N) {
characters[0] = "A";
characters[1] = "B";
characters[2] = "X";
characters[3] = "Y";
string start = "";
int res = press("AB");
if(res >= 1) {
if(res == 2) {
start = "AB";
} else {
res = press("AX");
if(res == 0) {
start = "B";
} else if(res == 1) {
start = "A";
} else {
start = "AX";
}
}
} else {
res = press("XA");
if(res == 0) {
start = "Y";
} else if(res == 1) {
start = "X";
} else {
start = "XA";
}
}
string first = "" + start.substr(0,1);
string notFirst[3];
int i = 0;
for(string c : characters) {
if(first == c) {
continue;
}
notFirst[i] = c;
++i;
}
while(start.size() != N) {
res = press(start + notFirst[0] + start + notFirst[1] + notFirst[0]);
if(res == start.size()) {
start = start + notFirst[2];
} else if(res == start.size() + 2) {
start = start + notFirst[1] + notFirst[0];
} else {
res = press(start + notFirst[0] + notFirst[0]);
if(res == start.size()) {
start = start + notFirst[1];
} else if(res == start.size() + 2) {
start = start + notFirst[0] + notFirst[0];
} else {
start = start + notFirst[0];
}
}
}
return start;
}