# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
855744 | IS_Rushdi | 콤보 (IOI18_combo) | C++17 | 1 ms | 344 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
// #include <iostream>
#include "combo.h"
using namespace std;
// int press(string x){
// return 0;
// }
string guess_sequence(int N) {
string x = "ABXY";
string S = "";
int cost = press("AB");
if(cost != 0){
cost = press("A");
if(cost == 1) S += 'A';
else S += 'B';
}else{
cost = press("X");
if(cost == 1) S += 'X';
else S += 'Y';
}
if(S[0] == 'A') x = "BXY";
else if(S[0] == 'B') x = "AXY";
else if(S[0] == 'X') x = "ABY";
else x = "ABX";
for(int i = 1; i < N; i++){
string p = "";
for(int j = 0; j < 3; j++){
p+=S + x[0] + x[j];
}
p+=S + x[1];
cost = press(p);
if(cost-i >= 2){
S += x[0];
}else if(cost-i == 1){
S += x[1];
}else{
S += x[2];
}
}
if(S.size() != N){
cost = press(S+x[0]);
if(cost == N){
S += x[0];
}else{
cost = press(S+x[1]);
if(cost == N){
S += x[1];
}else{
S+=x[2];
}
}
}
return S;
}
// int main(){
// }
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |