# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
148413 | test team (#200) | List of Unique Integers (FXCUP4_unique) | C++17 | 6 ms | 512 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 "unique.h"
#include <bits/stdc++.h>
using namespace std;
vector<int> PickUnique(int n) {
vector<int> ret;
if(UniqueCount(0,n-1)-UniqueCount(1,n-1)==1)
ret.push_back(1);
else
ret.push_back(0);
for(int i=1;i<n-1;i++)
{
if(UniqueCount(0,i)-UniqueCount(0,i-1)==1&&UniqueCount(i,n-1)-UniqueCount(i+1,n-1)==1)
ret.push_back(1);
else
ret.push_back(0);
}
if(UniqueCount(0,n-1)-UniqueCount(0,n-2)==1)
ret.push_back(1);
else
ret.push_back(0);
return ret;
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |