# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
369142 | wind_reaper | 콤보 (IOI18_combo) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "combo.h"
using namespace std;
/*int press(string s){
cout << "query : " << s << endl;
int r;
cin >> r;
return r;
}*/
string string_guess(int N){
string ans;
vector<string> s = {"A", "B", "X", "Y"};
bool f = false;
for(int i = 0; i < 3 && !f; i++){
if(press(s[i]) == 1){
ans += s[i];
s.erase(s.begin() + i);
f = true;
}
}
if(!f){
ans += 'Y';
s.erase(s.begin() + 3);
}
for(int i = 1; i < N-1; i++){
string query = ans + s[0] + ans + s[1] + s[0] + ans + s[1] + s[1] + ans + s[1] + s[2];
int r = press(query);
if(r == ans.size() + 1){
ans += s[0];
continue;
}
if(r == ans.size() + 2){
ans += s[1];
continue;
}
if(r == ans.size()){
ans += s[2];
continue;
}
}
f = false;
for(int i = 0; i < 2 && !f; i++){
if(press(ans + s[i]) == N){
ans += s[i];
f = true;
}
}
if(!f){
ans += s[2];
}
return ans;
}
/*int32_t main(){
// ios_base::sync_with_stdio(false);
// cin.tie(NULL);
int n;
cin >> n;
cout << string_guess(n) << '\n';
return 0;
}*/