#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using ld = long double;
constexpr int N = int(3e5) + 5;
constexpr int MOD = int(1e9) + 7;
int a[N];
void solve(){
int n, k;
cin >> n >> k;
for(int i{}; i < n; ++i){
cin >> a[i];
}
ll l{}, r{ll(3e14)}, ans{};
while(l <= r){
ll m = l + r >> 1;
pair<ll, int> cur{a[1] - m, 1}, dp{0, 0};
for(int i = 1; i < n; ++i){
cur = max(pair{cur.first + a[i], cur.second}, {dp.first + a[i] - m, dp.second + 1});
dp = max(dp, cur);
}
if(dp.second >= k || !m){
ans = dp.first + k * m;
l = m + 1;
}
else r = m - 1;
}
cout << ans;
}
int main(){
// freopen("input.txt", "r", stdin);
// freopen("output.txt", "w", stdout);
ios::sync_with_stdio(0);
cin.tie(0);
int t = 1;
// cin >> t;
for(int i = 1; i <= t; ++i) {
solve();
}
}
Compilation message
feast.cpp: In function 'void solve()':
feast.cpp:19:18: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
19 | ll m = l + r >> 1;
| ~~^~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
39 ms |
1360 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
43 ms |
1360 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
60 ms |
1616 KB |
Output is correct |
2 |
Correct |
61 ms |
1360 KB |
Output is correct |
3 |
Correct |
59 ms |
1616 KB |
Output is correct |
4 |
Correct |
61 ms |
1360 KB |
Output is correct |
5 |
Correct |
62 ms |
1608 KB |
Output is correct |
6 |
Correct |
61 ms |
1608 KB |
Output is correct |
7 |
Correct |
69 ms |
1612 KB |
Output is correct |
8 |
Correct |
81 ms |
1628 KB |
Output is correct |
9 |
Correct |
69 ms |
1616 KB |
Output is correct |
10 |
Correct |
64 ms |
1616 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
336 KB |
Output is correct |
2 |
Correct |
1 ms |
336 KB |
Output is correct |
3 |
Correct |
1 ms |
336 KB |
Output is correct |
4 |
Correct |
1 ms |
336 KB |
Output is correct |
5 |
Incorrect |
1 ms |
336 KB |
Output isn't correct |
6 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
336 KB |
Output is correct |
2 |
Correct |
1 ms |
336 KB |
Output is correct |
3 |
Correct |
1 ms |
336 KB |
Output is correct |
4 |
Correct |
1 ms |
336 KB |
Output is correct |
5 |
Incorrect |
1 ms |
336 KB |
Output isn't correct |
6 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
336 KB |
Output is correct |
2 |
Correct |
1 ms |
336 KB |
Output is correct |
3 |
Correct |
1 ms |
336 KB |
Output is correct |
4 |
Correct |
1 ms |
336 KB |
Output is correct |
5 |
Incorrect |
1 ms |
336 KB |
Output isn't correct |
6 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
39 ms |
1360 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |