# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
434005 | Apiram | 콤보 (IOI18_combo) | C++14 | 82 ms | 628 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
//#include "combo.h"
using namespace std;
int press(string s);
std::string guess_sequence(int N) {
int counts=0;
string p;
int maxxy = 4*N;
string k = "BYAX";
bool ok=false;
for (int i =0;i<3;++i){
string c = string(maxxy - 1,k[i]);
int cost=press(p+c);
if (cost>counts){
if (cost-counts>1){
for (int j = 0;j<cost-counts;++j)p+=k[i];
counts+=cost-counts;
k.erase(i,1);
ok=true;
break;
}
counts++;
p+=k[i];
k.erase(i,1);
ok=true;
break;
}
}
if (!ok){
k.erase(3,1);
counts++;
p+='X';
}
while(p.length()<N){
ok=false;
for (int i =0;i<2;++i){
char c =k[i];
string s = string(maxxy - p.length(),k[i]);
if (c==p[p.length()-1])continue;
int cost=press(p+s);
if (cost>counts){
if (cost-counts>1){
for (int j = 0;j<cost-counts;++j)p+=c;
counts+=cost-counts;
ok=true;
break;
}
counts++;
p+=c;
ok=true;
break;
}
}
if (!ok){
p+=k[2];
counts++;
}
}
return p;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |