Submission #152022

#TimeUsernameProblemLanguageResultExecution timeMemory
152022EntityITHomecoming (BOI18_homecoming)C++14
Compilation error
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; }

Compilation message (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