# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
247093 | dwsc | 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 <bits/stdc++.h>
#include "unique.h"
using namespace std;
int pre[202],post[202];
std::vector<int> PickUnique(int N) {
vector<int> v(N,0);
for (int i = 1; i <= N; i++){
pre[i] = UniqueCount(0,i-1);
post[i] = UniqueCount(i-1,N-1);
}
for (int i = 1; i <= N; i++){
if (pre[i] > pre[i-1] && post[i] > post[i+1]) v[i-1] = 1;
}
return v;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |