# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
149733 | GucciBelt (#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(n, 1);
for(int i = 0, cnt = 0; i < n; i++) {
int now = UniqueCount(0, i);
if(now <= cnt) ret[i] = 0;
cnt = now;
}
for(int i = n-1, cnt = 0; ~i; i--) {
int now = UniqueCount(i, n-1);
if(now <= cnt) ret[i] = 0;
cnt = now;
}
return ret;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |