# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
447541 | MohamedAliSaidane | 콤보 (IOI18_combo) | C++14 | 1 ms | 200 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "combo.h"
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<int,int> pii;
typedef vector<int> vi;
#define pb push_back
#define popb pop_back
#define ff first
#define ss second
const int MOD = 1e9 + 7;
const ll INF = 1e18;
string guess_sequence(int n)
{
char but[4] = {'A','B','X','Y'};
string p = "";
string s = "";
int fr = -1;
for(int i = 0; i < 4; i ++)
{
string g = but[i]+p;
int rep = press(g);
if(rep == 1)
{
fr = i;
s = but[i]+p;
break;
}
}
but[3] = but[fr];
but[fr] = 'Y';
while(s.length() < n -1)
{
char b = but[0];
char x = but[1];
char y = but[2];
string g = s + b;
g += (s+ x + x);
g += (s+ x + b);
g += (s+ x + y);
int tent = press(g);
if(tent == s.length() +1)
{
s += b;
}
else if(tent == s.length() + 2)
{
s += x;
}
else
{
s += y;
}
}
for(int j = 0; j < 3; j ++)
{
string g = s + but[j];
int tent = press(g);
if(tent == n)
{
s += but[j];
break;
}
}
return s;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |