# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
521248 | 2022-02-01T09:58:05 Z | penguin133 | List of Unique Integers (FXCUP4_unique) | C++17 | 1 ms | 204 KB |
#include "unique.h" #include <bits/stdc++.h> using namespace std; vector<int> PickUnique(int N) { vector<int>v; int L[201], R[202]; L[0] = 0, R[201] = 0; for(int i=0;i<N;i++){ L[i+1] = UniqueCount(0, i); R[i+1] = UniqueCount(i+1, N-1); } int cnt = 0, cnt2 = R[200]; for(int i=1;i<=N;i++){ if(L[i] > L[i-1] && R[i] > R[i+1])v.push_back(1); else v.push_back(0); cnt = L[i]; cnt2 = R[i]; } return v; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 204 KB | Wrong |
2 | Halted | 0 ms | 0 KB | - |