# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
101769 | polarz | 콤보 (IOI18_combo) | C++14 | 1 ms | 420 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "combo.h"
#define lld long long
#define PB push_back
#define F first
#define S second
#define jizz cin.tie(0);ios_base::sync_with_stdio(0);
#define endl '\n'
#define INF 2147483647
using namespace std;
string meow = "XYAB";
string guess_sequence(int n){
string s;
int t1 = press("AB");
if(t1 == 1){
t1 = press("A");
if(t1 == 1)s = "A";
else s = "B";
}else{
t1 = press("X");
if(t1 == 1)s = "X";
else s = "Y";
}
string p;
for(int i = 0; i < 4; i++){
if(meow[i] != s[0])p += meow[i];
}
for(int i = 2; i <= n-1; i++){
t1 = press(s+p[0]+s+p[1]+p[0]+s+p[1]+p[1]+s+p[1]+p[2]);
if(t1 == i)s += p[0];
else if(t1 == i+1)s += p[1];
else s += p[2];
}
t1 = press(s+p[0]+s+p[1]);
if(t1 == n){
t1 = press(s+p[0]);
if(t1 == 1)s += p[0];
else s += p[1];
}else{
s += p[2];
}
assert(s.size() == n);
return s;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |