Submission #148413

#TimeUsernameProblemLanguageResultExecution timeMemory
148413test team (#200)List of Unique Integers (FXCUP4_unique)C++17
35 / 100
6 ms512 KiB
#include "unique.h"
#include <bits/stdc++.h>
using namespace std;
vector<int> PickUnique(int n) {
    vector<int> ret;
    if(UniqueCount(0,n-1)-UniqueCount(1,n-1)==1)
        ret.push_back(1);
    else
        ret.push_back(0);
    for(int i=1;i<n-1;i++)
    {
        if(UniqueCount(0,i)-UniqueCount(0,i-1)==1&&UniqueCount(i,n-1)-UniqueCount(i+1,n-1)==1)
            ret.push_back(1);
        else
            ret.push_back(0);
    }
    if(UniqueCount(0,n-1)-UniqueCount(0,n-2)==1)
        ret.push_back(1);
    else
        ret.push_back(0);
	return ret;
}

Compilation message (stderr)

unique.cpp: In function 'std::vector<int> PickUnique(int)':
unique.cpp:19:5: warning: this 'else' clause does not guard... [-Wmisleading-indentation]
     else
     ^~~~
unique.cpp:21:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'else'
  return ret;
  ^~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...