# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
196890 | Juney | 콤보 (IOI18_combo) | C++14 | 47 ms | 612 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "combo.h"
#include <bits/stdc++.h>
using namespace std;
char find_first() {
int ret = press("AB");
if(ret == 0) {
if(press("X") == 1) return 'X';
return 'Y';
}
if(press("A") == 1) return 'A';
return 'B';
}
string guess_sequence(int N) {
string ans;
char A = 'A', B = 'B', X = 'X', Y = 'Y';
char f = find_first();
if(f == B) swap(A, B);
else if(f == X) swap(A, X);
else if(f == Y) swap(A, Y);
ans += f;
if(N == 1) return ans;
for(int i=1; i<N-1; i++) {
string tmp = ans + X + ans + Y + B + ans + Y + X + ans + Y + Y;
int cnt = press(tmp);
if(cnt == ans.size()) ans += B;
else if(cnt == ans.size() + 1) ans += X;
else ans += Y;
}
int cnt = press(ans + X + ans + Y);
if(cnt == N) {
if(press(ans + X) == N) return ans + X;
return ans + Y;
}
return ans + B;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |