Submission #148439

#TimeUsernameProblemLanguageResultExecution timeMemory
148439test team (#200)List of Unique Integers (FXCUP4_unique)C++17
100 / 100
7 ms512 KiB
#include "unique.h" #include <bits/stdc++.h> using namespace std; int tmp[201][2]; vector<int> PickUnique(int n) { vector<int> ret; for(int i=0;i<n;i++) tmp[i][1]=UniqueCount(i,n-1); for(int i=0;i<n;i++) tmp[i][0]=UniqueCount(0,i); if(tmp[0][1]-tmp[1][1]==1) ret.push_back(1); else ret.push_back(0); for(int i=1;i<n-1;i++) { if(tmp[i][0]-tmp[i-1][0]==1&&tmp[i][1]-tmp[i+1][1]==1) ret.push_back(1); else ret.push_back(0); } if(tmp[n-1][0]-tmp[n-2][0]==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:24:5: warning: this 'else' clause does not guard... [-Wmisleading-indentation]
     else
     ^~~~
unique.cpp:26: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...