# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
505991 | LouayFarah | 콤보 (IOI18_combo) | C++14 | 102 ms | 604 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "bits/stdc++.h"
using namespace std;
#define endl "\n"
#define ll long long int
#define pb push_back
#define mp make_pair
#define fi first
#define se second
const long long MOD = 1e9+7;
const long long INF = 1e18;
int nx[4] = {0, 0, -1, 1};
int ny[4] = {1, -1, 0, 0};
ll my_rand(ll l, ll r)
{
srand(chrono::steady_clock::now().time_since_epoch().count());
ll len = r-l;
ll a = rand()%len;
ll b = rand()%len;
ll res = ((((a%len)*((RAND_MAX+1)%len))%len) + (b%len))%len;
if(res<l)
res +=l;
return res;
}
int press(string p);
string guess_sequence(int n)
{
string s = "";
string choices = "ABXY";
string p = "";
for(int i = 0; i<4; i++)
{
p.pb(choices[i]);
if(press(p)==1)
{
s = p;
break;
}
p = s;
}
while(int(s.length())<n)
{
for(int i = 0; i<4; i++)
{
if(choices[i]==s[0])
continue;
if(choices[i]==s[int(s.length())-1])
continue;
p = s;
while(int(p.length())<4*n)
{
p.pb(choices[i]);
}
ll added = press(p) - int(s.length());
for(int j = 0; j<added; j++)
s.pb(choices[i]);
}
}
return s;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |