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