# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
283632 | charterla | 콤보 (IOI18_combo) | C++14 | 1 ms | 200 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "combo.h"
#include <iostream>
#include <cstdio>
using namespace std;
int first;
string ans="";
char rule[4]={'A','B','X','Y'};
int p[3];
inline void findFirst(){
string temp;
for(int i=2;i>0;i--){
temp="";
for(int j=first;j<first+i;j++)temp+=rule[j];
//cout<<temp<<endl;
if(press(temp)==0)first+=i;
}
int j=0;for(int i=0;i<4;i++)if(i!=first)p[j++]=i;
ans+=rule[first];
return;
}
inline void findPress(){
string x,y;
x=ans+rule[p[1]];y=ans+rule[p[2]];
for(int i=0;i<3;i++)x+=y+rule[p[i]];
//cout<<x<<endl;
ans+=rule[p[press(x)-ans.size()]];
return;
}
inline void findLast(){
string x,y;
x=ans+rule[p[1]];y=ans+rule[p[2]];
//cout<<x<<" "<<y<<endl;
if(press(x)==ans.size()+1)ans=x;
else if(press(y)==ans.size()+1)ans=y;
else ans+=rule[p[0]];
return;
}
string guess_sequence(int n) {
findFirst();
for(int i=1;i<n-1;i++)findPress();
findLast();
return ans;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |