제출 #152022

#제출 시각아이디문제언어결과실행 시간메모리
152022EntityITHomecoming (BOI18_homecoming)C++14
컴파일 에러
0 ms0 KiB
#include<bits/stdc++.h> #include<homecoming.h> using namespace std; using ll = long long; ll solve(int n, int K, vector<int> a, vector<int> b) { ll ret = 0; vector<ll> prefB; for (int i = 0; i < (n << 1); ++i) prefB.push_back( (i ? prefB[i - 1] : 0) + (b[i % n]) ); for (int i = 0; i < n; ++i) { ret += max( (ll)0, a[i] - prefB[i + K - 1] + (i ? prefB[i - 1] : 0) ); } return ret; }

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

/tmp/ccIZH13n.o: In function `main':
grader.cpp:(.text.startup+0xff): undefined reference to `solve(int, int, int*, int*)'
collect2: error: ld returned 1 exit status