# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
149953 | 티셔츠 콜렉터 (#200) | List of Unique Integers (FXCUP4_unique) | C++17 | 6 ms | 560 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"
std::vector<int> PickUnique(int N) {
std::vector<int> res;
int total = UniqueCount(0, N-1);
int cur = total;
int prev = 0;
for (int i=0; i<N-1; i++) {
int next = UniqueCount(i+1, N-1);
int tmp = UniqueCount(0, i);
int ans = 0;
if (next < cur) {
if (tmp > prev) {
ans = 1;
}
}
res.push_back(ans);
cur = next;
prev = tmp;
}
int last = 0;
if (total > prev) {
last = 1;
}
res.push_back(last);
return res;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |