제출 #931132

#제출 시각아이디문제언어결과실행 시간메모리
931132Amirreza_FakhriGap (APIO16_gap)C++17
컴파일 에러
0 ms0 KiB
// In the name of the God #include "gap.h" #include <bits/stdc++.h> #define ll long long #define int long long #define pb push_back #define F first #define S second #define mp make_pair #define pii pair <int, int> #define smin(x, y) (x) = min((x), (y)) #define smax(x, y) (x) = max((x), (y)) #define all(x) (x).begin(), (x).end() using namespace std; const int inf = 1e9+7; const int mod = 998244353; const int maxn = 1e18; int a[100005]; int findGap(int t, int n) { if (t == 1) { int l = 1, r = n, s = 1, e = maxn; for (; l <= r; l++, r--) { ll mn, mx; MinMax(s, e, &mn, &mx); a[l] = mn, a[r] = mx; s = mn+1, r = mx-1; } int ans = 0; for (int i = 2; i <= n; i++) smax(ans, a[i]-a[i-1]); return ans; } else { } } // int32_t main() { // ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); // return 0; // }

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

gap.cpp: In function 'long long int findGap(long long int, long long int)':
gap.cpp:39:1: warning: control reaches end of non-void function [-Wreturn-type]
   39 | }
      | ^
/usr/bin/ld: /tmp/ccr8nQ2R.o: in function `main':
grader.cpp:(.text.startup+0x1b7): undefined reference to `findGap(int, int)'
collect2: error: ld returned 1 exit status