# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
677113 | hello_there_123 | Combo (IOI18_combo) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
//#include "combo.h"
using namespace std;
string arr[4]={"A","B","X","Y"};
set<string>s;
int press(string s){};
string guess_sequence(int N){
string ans = "";
string start = "";
s.insert("A");
s.insert("B");
s.insert("X");
s.insert("Y");
for(int i=0;i<3;i++){
if(press(arr[i]) == 1){
start = arr[i];
break;
}
}
s.erase(start);
vector<string>v;
for(auto string:s) v.push_back(string);
if(start == "") start = "Y";
ans+=start;
for(int i=0;i<N-2;i++){
string tr = "";
tr+=ans;
tr+=v[0];
tr+=ans;
tr+=v[1];
tr+=v[0];
tr+=ans;
tr+=v[1];
tr+=v[1];
tr+=ans;
tr+=v[1];
tr+=v[2];
if(press(tr) == ans.length()){
ans+=v[2];
}
else if(press(tr) == ans.length()+1){
ans+=v[0];
}
else ans+=v[1];
}
if(press(ans+v[0]) == N) return ans+v[0];
if(press(ans+v[1]) == N) return ans+v[1];
return ans+v[2];
}