제출 #230987

#제출 시각아이디문제언어결과실행 시간메모리
230987cstuartList of Unique Integers (FXCUP4_unique)C++17
컴파일 에러
0 ms0 KiB
#include <bits/stdc++.h> using namespace std; //#include "unique.h" //int UniqueCount(int R, int C); vector <int> PickUnique (int N) { vector <int> isUnique (N, 0); int x; x = 1; for (int i = 1; i < N; i++) { int y = UniqueCount(0, i); if (y <= x) isUnique[i] = 0; x = y; } x = 1; for (int i = N-2; i >= 0; i--) { int y = UniqueCount(i, N-1); if (y <= x) isUnique[i] = 0; x = y; } return isUnique; }

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

unique.cpp: In function 'std::vector<int> PickUnique(int)':
unique.cpp:15:11: error: 'UniqueCount' was not declared in this scope
   int y = UniqueCount(0, i);
           ^~~~~~~~~~~
unique.cpp:22:11: error: 'UniqueCount' was not declared in this scope
   int y = UniqueCount(i, N-1);
           ^~~~~~~~~~~