# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
471950 | nickmet2004 | Hidden Sequence (info1cup18_hidden) | C++11 | 3 ms | 456 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<bits/stdc++.h>
#include "grader.h"
using namespace std;
int Q,k,n0,n1,L;
vector<int> ans;
int ask(int x , int y, int A){
vector<int> v;
while(x--) v.emplace_back(A);
while(y--) v.emplace_back(A^1);
int w = 0;
if(L)w=L-x;
while(w--) v.emplace_back(A);
return isSubsequence(v);
}
vector<int> findSequence(int n){
ans.resize(n);
for(int i = 1; i <= n; ++i){
if(!ask(i,0,0)){
n0 = i - 1;
n1 = n - n0;
break;
}
}
if(n0<n1) {Q^=1; swap(n0 , n1);}
k=n;
int P = n0;
L = n0;
while(1){
if(P==1)break;
int one= 1;
while(1){
if(!ask(P , one , Q)){
one--;
k-= one-1;
ans[k] = 1;
P--;
break;
}
one++;
}
}
for(int i = 0; i < n; ++i){
if(ans[i]) ans[i] = Q;
else ans[i] = Q^1;
}
return ans;
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |