Submission #149759

#TimeUsernameProblemLanguageResultExecution timeMemory
149759GojekKawe (#200)List of Unique Integers (FXCUP4_unique)C++17
Compilation error
0 ms0 KiB
#include "unique.h"
std::vector<int> PickUnique (int N){
	int U[N];
	int left[N];
	int right[N];
	int k=UniqueCount(0,N-1);
	for(int i=1;i<N-1;i++){
		left[i]=UniqueCount(0,i);
	}
	for(int i=1;i<N-1;i++){
		right[i]=UniqueCount(i,N-1);
	}
	for(int i=0;i<N;i++){
		U[i]=0;
	}
	if(k==left[N-2]+1){
			U[N-1]=1;
		};
	if(k==right[1]+1){
			U[0]=1;
		};
	for(int i=N-2; i>0;i--){
		if(right(i)==right(i-1)+1){
			if(left(i)+1==left(i+1))
				U[i]=1;
		}
	};
	std::vector<int> vect(U, U + sizeof(U)/sizeof(U[0]));
	return vect;
}

Compilation message (stderr)

unique.cpp: In function 'std::vector<int> PickUnique(int)':
unique.cpp:23:13: error: 'right' cannot be used as a function
   if(right(i)==right(i-1)+1){
             ^
unique.cpp:23:25: error: 'right' cannot be used as a function
   if(right(i)==right(i-1)+1){
                         ^
unique.cpp:24:13: error: 'left' cannot be used as a function
    if(left(i)+1==left(i+1))
             ^
unique.cpp:24:26: error: 'left' cannot be used as a function
    if(left(i)+1==left(i+1))
                          ^