이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "combo.h"
#include <iostream>
using namespace std;
char choices[] = {'A', 'B', 'X', 'Y'};
std::string guess_sequence(int N) {
// trova il primo carattere
int first;
for(first = 0; first < 4; ++first) {
bool found = 1;
for(auto &c : choices) {
int val = press(string(1, c) + choices[first]);
if(val != 1) found = 0;
}
if(found)
break;
}
string ans = string(1, choices[first]);
while((int)ans.length() < N) {
for(auto &c : choices) {
if(c == choices[first]) continue;
int r = press(ans + c);
if(r == (int)ans.length()+1) {
ans += c;
}
}
}
return ans;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |