# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
151844 | tmwilliamlin168 | List of Unique Integers (FXCUP4_unique) | C++17 | 2 ms | 504 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> a(1), b(1);
for(int i=0; i<n; ++i)
a.push_back(UniqueCount(0, i));
for(int i=n-1; ~i; --i)
b.push_back(UniqueCount(i, n-1));
vector<int> c(n);
for(int i=0; i<n; ++i)
c[i]=a[i+1]-a[i]>0&&b[n-i]-b[n-1-i]>0;
return c;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |