# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
95574 | dantoh000 | 콤보 (IOI18_combo) | C++14 | 53 ms | 712 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#include "combo.h"
string guess_sequence(int N) {
char firstletter;
string S = "";
string p = "";
char choices[3];
if (press("AB") >= 1){
if (press("A") == 1){
firstletter = 'A';
}
else firstletter = 'B';
}
else {
if (press("X") == 1){
firstletter = 'X';
}
else firstletter = 'Y';
}
int cur = 0;
if (firstletter != 'A') choices[cur++] = 'A';
if (firstletter != 'B') choices[cur++] = 'B';
if (firstletter != 'X') choices[cur++] = 'X';
if (firstletter != 'Y') choices[cur++] = 'Y';
S += firstletter;
int curscore = 1;
for (int i = 1; i < N-1; ++i) {
p = S+choices[0] + choices[0] + S+choices[0]+choices[1]+S+choices[0]+choices[2]+S+choices[1];
//cout << "guessing " << p << " size of " << N << " " << p.length() << endl;
int score = press(p);
if (score == curscore){
S += choices[2];
}
else if (score == curscore+1){
S += choices[1];
}
else {
S += choices[0];
}
curscore++;
}
if (S.size() == N-1){
p = S+choices[0] + S+choices[1];
if (press(p) == N){
p = S+choices[0];
if (press(p) == N){
S += choices[0];
}
else S += choices[1];
}
else S += choices[2];
}
return S;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |