# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
772606 | _martynas | 콤보 (IOI18_combo) | C++14 | 1 ms | 208 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "combo.h"
#include <bits/stdc++.h>
using namespace std;
/*
Let known prefix be $ and first letter is A
press: $B + $XX + $XB + $XY
if this string returns |$|+1 then $ = $+'B'
else if this string returns |$|+2 then $ = $+'X'
else $ = $+'Y'
*/
string guess_sequence(int N) {
string p = "AB";
string S = "";
vector<char> C = {'A', 'B', 'X', 'Y'};
if(press(p)) {
p = "A";
if(press(p)) S = "A";
else S = "B";
}
else {
p = "X";
if(press(p)) S = "X";
else S = "Y";
}
for(int i = 0; i < N-2; i++) {
p = "";
string temp = "";
for(char c : C) {
if(c == S[0]) continue;
if(p == "") {
p = S; p += c;
temp += c;
}
else if(p.size() == S.size()+1) {
for(char cc : C) {
if(cc == S[0]) continue;
p += S; p += c; p += cc;
}
temp += c;
}
else {
temp += c;
}
}
int val = press(p);
if(val == S.size()+1) {
S += temp[0];
}
else if(val == S.size()+2) {
S += temp[1];
}
else {
S += temp[2];
}
}
int cnt = 0;
for(char c : C) {
if(c == S[0]) continue;
cnt++;
if(cnt == 3) {
S += c;
}
else {
p = S; p += c;
if(press(p) == N) {
S += c; break;
}
}
}
return S;
}
/*
*/
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |