| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 149159 | TLEWA맞 (#200) | List of Unique Integers (FXCUP4_unique) | C++17 | 5 ms | 256 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "unique.h"
std::vector<int> PickUnique(int N) {
int left[202],right[202];
for(int i=0;i<N;i++){
left[i]=UniqueCount(0,i);
right[i]=UniqueCount(i,N-1);
}
std::vector <int> ret;
if(right[0]-right[1]==1)ret.push_back(1);
else ret.push_back(0);
for(int i=1;i<N-1;i++){
if(right[i]-right[i+1]==1&&left[i]-left[i-1]==1)ret.push_back(1);
else ret.push_back(0);
}
if(left[N-1]-left[N-2]==1)ret.push_back(1);
else ret.push_back(0);
return std::vector<int>({0, 0, 1, 0, 0});
}
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
