| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 974535 | LCJLY | Hidden Sequence (info1cup18_hidden) | C++14 | 4 ms | 696 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;
//code
#define show(x,y) cout << y << " " << #x << endl;
#define show2(x,y,i,j) cout << y << " " << #x << " " << j << " " << #i << endl;
#define show3(x,y,i,j,p,q) cout << y << " " << #x << " " << j << " " << #i << " " << q << " " << #p << endl;
#define show4(x,y) for(auto it:y) cout << it << " "; cout << #x << endl;
typedef pair<long long,long long>pii;
typedef pair<int,pii>pi2;
//isSubsequence()
vector<int> findSequence(int n){
int half=n/2;
vector<int>v;
for(int x=0;x<half+1;x++){
v.push_back(0);
}
bool hold=isSubsequence(v);
int flip=0;
if(hold){
flip=1;
}
//flip = 1 means 1 is minority
//flip = 0 means 0 is minority
v.clear();
while(isSubsequence(v)){
v.push_back(0^flip);
}
v.pop_back();
//zero is the minority
vector<int>ans;
int cnt=v.size();
int l=0; //cnt zero to the left
//show(flip,flip);
for(int x=0;x<n;x++){
//put 1
vector<int>temp;
for(int y=0;y<x-l;y++){
temp.push_back(1^flip);
}
temp.push_back(1^flip);
for(int y=0;y<cnt;y++){
temp.push_back(0^flip);
}
//put 0
vector<int>temp2;
for(int y=0;y<l;y++){
temp2.push_back(0^flip);
}
temp2.push_back(0^flip);
//show(n-x-cnt+1,n-x-cnt+1);
for(int y=0;y<n-x-cnt;y++){
temp2.push_back(1^flip);
}
//show(x,x);
//show4(temp,temp);
//show4(temp2,temp2);
if((int)temp.size()<=half+3){
bool amos=isSubsequence(temp);
if(amos){
ans.push_back(1^flip);
}
else{
ans.push_back(0^flip);
cnt--;
l++;
}
}
else{
bool amos=isSubsequence(temp2);
if(amos){
ans.push_back(0^flip);
cnt--;
l++;
}
else{
ans.push_back(1^flip);
}
}
}
return ans;
}
//code
Compilation message (stderr)
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
