# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
227624 | bensonlzl | 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 <vector>
#include "unique.h"
using namespace std;
vector<int> PickUnique(int n) {
int pref[205], suff[205];
vector<int> u(n);
for (int i = 0; i <= n+1; ++i){
pref[i] = suff[i] = 0;
}
for (int i = 1; i <= n; ++i){
pref[i] = UniqueCount(0, i-1);
suff[i] = UniqueCount(i-1, n-1);
}
for (int i = 1; i <= n; ++i){
if (pref[i] > pref[i-1] && suff[i] > suff[i+1]) u[i-1] = 1;
else u[i-1] = 0;
}
return u;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |