# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
903897 | zhasyn | 콤보 (IOI18_combo) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "combo.h"
#include <bits/stdc++.h>
#define pb push_back
#define pf push_front
using namespace std;
#define F first
#define S second
typedef long long ll;
#define pii pair <int, int>
#define pll pair <ll, ll>
typedef long double ld;
const ll N = 2 * 1e5 + 10, len = 316;
const ll mod = 1e9 + 7;
ll um(ll a, ll b){
return ((1LL * a * b) % mod + mod) % mod;
}
ll subr(ll a, ll b){
return ((1LL * a - b) % mod + mod) % mod;
}
string guess_sequence(int n){
string s = "ABXY";
int fir;
if(press("AB") >= 1){
if(press("A") == 1) fir = 0;
else fir = 1;
} else{
if(press("X") == 1) fir = 2;
else fir = 3;
}
string ans = s[fir];
for(int i = 1; i < n; i++){
int cnt = 0;
for(int j = 0; j < 4; j++){
if(j == fir) continue;
if(cnt == 2){
ans += s[j];
break;
}
int k = press(ans + s[j]);
cnt++;
if(k == i + 1){
ans += s[j];
break;
}
}
}
return ans;
}