| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 135965 | neki | 콤보 (IOI18_combo) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
//#include "combo.h"
#include <bits/stdc++.h>
#define loop(i, a, b) for(int i=a;i<b;i++)
using namespace std;
vector<string>zn={"A", "B", "X", "Y"};
std::string guess_sequence(int N) {
int st;
vector<int> ost;
loop(i, 0, 4){
if(press(zn[i])) st=i;
else ost.push_back(i);
}
string ans=zn[st];
if(N==1) return ans;
loop(i, 1, N-1){
string ask=ans+zn[ost[0]]+ans+zn[ost[1]]+zn[ost[0]]+ans+zn[ost[1]]+zn[ost[1]]+ans+zn[ost[1]]+zn[ost[2]];
int res=press(ask);
if(res==ans.length()) ans+=zn[ost[2]];
else if(res==ans.length()+1) ans+=zn[ost[0]];
else ans+=zn[ost[1]];
}
loop(i, 0, 3){
if(press(ans+zn[ost[i]])==ans.length()+1) return ans+zn[ost[i]];
}
}
int main(){
return 0;
}
