# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
600648 | enerelt14 | Combo (IOI18_combo) | C++14 | 1 ms | 336 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<bits/stdc++.h>
#define pb push_back
using namespace std;
int n;
string guess_sequence(int N){
string ans;
n=N;
string p, x;
for (int i=0;i<n;i++){
p.clear();
if (i==0){
p="AB";
if (press(p)>0){
p.clear();
p="A";
if (press(p)>0){
ans="A";
x="BXY";
}
else{
ans="B";
x="AXY";
}
p.clear();
continue;
}
p.clear();
p="X";
if (press(p)>0){
ans="X";
x="ABY";
}
else{
ans="Y";
x="ABX";
}
p.clear();
continue;
}
if (i==n-1){
p=ans+x[0];
if (press(p)==n){
ans+=x[0];
return ans;
}
p=ans+x[1];
if (press(p)==n){
ans+=x[1];
return ans;
}
ans+=x[2];
return ans;
}
for (int q=0;q<4;q++){
p+=ans;
if (q==3){
p+=x[0];
for (int j=ans.size()+1;j<n;j++)p+=ans[0];
break;
}
p+=x[1];
p+=x[q];
for (int j=ans.size()+2;j<n;j++)p+=ans[0];
}
int y=press(p);
if (y==ans.size())ans+=x[2];
if (y==ans.size()+1)ans+=x[0];
if (y==ans.size()+2)ans+=x[1];
p.clear();
}
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |