# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
237468 | A02 | 콤보 (IOI18_combo) | C++14 | 1 ms | 200 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "combo.h"
#include<iostream>
#include<vector>
using namespace std;
string guess_sequence(int N) {
string p = "AB";
int coins = press(p);
string S = "";
char first = 'A';
if (coins > 0){
coins = press("A");
if (coins > 0){
S = "A";
first = 'A';
} else {
first = 'B';
S = "B";
}
} else {
coins = press("X");
if (coins > 0){
S = "X";
first = 'X';
} else {
first = 'Y';
S = "Y";
}
}
vector<char> not_first;
vector<char> possible;
possible.push_back('A');
possible.push_back('B');
possible.push_back('X');
possible.push_back('Y');
for (int i = 0; i < 4; i++){
if (possible[i] != first){
not_first.push_back(possible[i]);
}
}
while (S.size() < N){
cout << S << ' ' << N << endl;
int t = S.size();
if (S.size() == N - 1){
coins = press(S + not_first[0] + S + not_first[1]);
if (coins == t){
S += not_first[2];
break;
}
coins = press(S + not_first[0]);
if (coins == t + 1){
S += not_first[0];
break;
}
S += not_first[1];
break;
}
string to_test = S + not_first[0] + not_first[0] + S + not_first[0] + not_first[1] + S + not_first[0] + not_first[2] + S + not_first[1];
coins = press(to_test);
if (coins == t + 2){
S = S + not_first[0];
}
if (coins == t + 1){
S = S + not_first[1];
}
if (coins == t){
S = S + not_first[2];
}
}
return S;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |