제출 #374534

#제출 시각아이디문제언어결과실행 시간메모리
374534vishesh312곤돌라 (IOI14_gondola)C++17
컴파일 에러
0 ms0 KiB
#include "bits/stdc++.h" using namespace std; #include "gondola.h" int replacement(int n, int a[], int b[]); int countReplacement(int n, int a[]); int valid(int n, int arr[]) { map<int, bool> mp; vector<int> v(arr, arr+n); auto it = min_element(v.begin(), v.end()); rotate(v.begin(), it, v.end()); for (int i = 0; i < n; ++i) { if (mp[v[i]]) return 0; mp[v[i]] = true; if (v[i] <= n and i != v[i] - v[0]) return 0; } return 1; }

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

/tmp/ccq6rMPv.o: In function `main':
grader.cpp:(.text.startup+0x108): undefined reference to `countReplacement'
grader.cpp:(.text.startup+0x132): undefined reference to `replacement'
collect2: error: ld returned 1 exit status