Submission #247093

#TimeUsernameProblemLanguageResultExecution timeMemory
247093dwscList of Unique Integers (FXCUP4_unique)C++17
100 / 100
6 ms512 KiB
#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 timeMemoryGrader output
Fetching results...