# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
156649 | killB0x | 콤보 (IOI18_combo) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
using namespace std;
#include <bits/stdc++.h>
#include "combo.h"
typedef long long int ll;
typedef unsigned long long int ull;
typedef pair<int,int> ii;
typedef pair<ll,ll> dl;
typedef vector<ii> vii;
typedef vector<dl> vdll;
typedef vector<int> vi;
typedef vector<ll> vll;
typedef vector<string> vs;
#define pb push_back
#define mp make_pair
#define ft first
#define sc second
#define in insert
#define bs binary_search
#define rc(s) return cout << s,0
const ll mod=1e9+7;
const int N=100005;
#define INF LLONG_MAX
#define sz(x) ((int)(x.size()))
#define int ll
#define endl '\n'
/*----------------------------*/
char ch[4]={"A","B","X","Y"};
string guess_sequence(int n)
{
char x;
string tmp;
for(int i=0;i<4;i++)
{
x=ch[i];;
if(press(x)==1)
{
tmp+=x;
break;
}
}
for(int i=1;i<n;i++)
{
for(int j=0;j<4;j++)
{
if(ch[j]!=x)
{
if(press(tmp+ch[j])==i+1)
{
tmp+=ch[j];
break;
}
}
}
}
return tmp;
}
/*----------------------------*/
int32_t main() {
//freopen("sol.in","r",stdin);
//freopen("sol.out","w",stdout);
ios::sync_with_stdio(false),cin.tie(0),cout.tie(0);
//THIS IS IS THE END
}