Submission #148407

#TimeUsernameProblemLanguageResultExecution timeMemory
148407잉여로운 고3 (#200)List of Unique Integers (FXCUP4_unique)C++17
100 / 100
6 ms512 KiB
#include <bits/stdc++.h>

#include "unique.h"

using namespace std;

int L[222], R[222];

vector <int> PickUnique(int n)
{
	vector <int> ans(n);
	int i;
	
	for(i=1; i<=n; i++){
		L[i] = UniqueCount(0, i - 1);
		R[i] = UniqueCount(i - 1, n - 1);
	}
	
	for(i=1; i<=n; i++){
		ans[i - 1] = (L[i] == L[i - 1] + 1 && R[i] == R[i + 1] + 1);
	}
	
	return ans;
}
#Verdict Execution timeMemoryGrader output
Fetching results...