# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
986847 | LucaIlie | Combo (IOI18_combo) | C++17 | 21 ms | 1472 KiB |
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 "combo.h"
#include <iostream>
using namespace std;
char ch[4] = {'A', 'B', 'X', 'Y' };
char alf[3];
string s;
string guess_sequence( int n ) {
int coins, i, first_letter = -1, j, verific;
for( i = 0; i < 3; i++ ) {
s = ch[i];
if( press(s) == 1 )
first_letter = i;
}
if( first_letter == -1 )
first_letter = 3;
s = ch[first_letter];
//cout << s;
j = 0;
for( i = 0; i < 4; i++ ) {
if( i != first_letter ) {
alf[j] = ch[i];
j++;
}
}
for( i = 1; i < n; i++ ) {
for( j = 0; j < 3; j++ ) {
if( j == 2 ) {
s = s + alf[j];
//cout << alf[j];
} else if( press( s + alf[j] ) == i + 1 ) {
s = s + alf[j];
//cout << alf[j];
break;
}
}
}
return s;
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |