이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "combo.h"
#include<bits/stdc++.h>
using namespace std;
vector<char> v = {'A', 'B', 'X', 'Y'};
char xth(int x, char ex) {
for(char i:v) {
if(i!=ex) {
x--;
if(x==0) return i;
}
}
}
std::string guess_sequence(int N) {
string ans;
if(press("AB")) {
if(press("A")) ans = "A";
else ans = "B";
} else {
if(press("X")) ans = "X";
else ans = "Y";
}
for(int i=2; i<N; i++) {
int tmp = press(ans + xth(1, ans[0]) + ans + xth(2, ans[0]) + xth(1, ans[0])
+ ans + xth(2, ans[0]) + xth(2, ans[0]) + ans + xth(2, ans[0]) + xth(3, ans[0]));
if(tmp==i) ans += xth(1, ans[0]);
else if(tmp==i+1) ans += xth(2, ans[0]);
else ans += xth(3, ans[0]);
}
if(press(ans + xth(1, ans[0]))==N) ans += xth(1, ans[0]);
else if(press(ans + xth(2, ans[0]))==N) ans += xth(2, ans[0]);
else ans += xth(3, ans[0]);
return ans;
}
컴파일 시 표준 에러 (stderr) 메시지
combo.cpp: In function 'char xth(int, char)':
combo.cpp:14:1: warning: control reaches end of non-void function [-Wreturn-type]
14 | }
| ^
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |