| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 149953 | 티셔츠 콜렉터 (#200) | List of Unique Integers (FXCUP4_unique) | C++17 | 6 ms | 560 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#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... | ||||
