제출 #232002

#제출 시각아이디문제언어결과실행 시간메모리
232002BlerarghList of Unique Integers (FXCUP4_unique)C++17
컴파일 에러
0 ms0 KiB
#include <bits/stdc++.h>
#include "unique.h"
using namespace std;
 
int[] PickUnique(int N){
  int ans[N], prevL=0, prevR=UniqueCounnt(0,N-1);
  memset(ans, 0, sizeof(ans));
  for (int i=0; i<=N-1; i++){
    int newL = UniqueCount(0,i);
    if (i!=N-1) int newR = UniqueCount(i+1,N-1);
    if (newL == prevL+1 && newR == prevR+1) {
      ans[i]=1;
    }
    prevL = newL;
    prevR = newR;
  }
  return ans;
}

컴파일 시 표준 에러 (stderr) 메시지

unique.cpp:5:4: error: decomposition declaration cannot be declared with type 'int'
 int[] PickUnique(int N){
    ^~
unique.cpp:5:4: note: type must be cv-qualified 'auto' or reference to cv-qualified 'auto'
unique.cpp:5:4: error: empty decomposition declaration
unique.cpp:5:7: error: expected initializer before 'PickUnique'
 int[] PickUnique(int N){
       ^~~~~~~~~~