This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
# include <bits/stdc++.h>
# include "combo.h"
using namespace std ;
string guess_sequence(int N) {
vector < char > a = { 'A', 'B', 'X', 'Y' } ;
char x ;
string ans = "", p = "";
int cnt = 0 , ok = 0 ;
while( cnt != N ) {
for( int i = 0 ; i < 4 ; i ++ ) {
if( ok && x == a[i] ) continue ;
if( press( ans + a[i] ) ) {
cnt ++ ;
ans += a[i] ;
if( !ok ) x = a[i] ;
}
}
}
return ans ;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |