#include "bits/stdc++.h"
using namespace std;
#ifdef Nero
#include "Deb.h"
#else
#define deb(...)
#endif
const int N = 300005;
int n, k;
int a[N];
pair<long long,int> dp[N][2];
pair<long long,int> solve (long long cost) {
dp[0][0] = {0LL, 0};
dp[0][1] = {-1e15, -N};
for (int i = 1; i <= n; ++i) {
dp[i][0] = max(dp[i - 1][0], dp[i - 1][1]);
dp[i][1] = max(make_pair(dp[i - 1][0].first + a[i] - cost, dp[i - 1][0].second + 1),
make_pair(dp[i - 1][1].first + a[i], dp[i - 1][1].second));
}
return max(dp[n][0], dp[n][1]);
}
signed main(){
ios::sync_with_stdio(false);
cin.tie(nullptr);
cin >> n >> k;
for (int i = 1; i <= n; ++i) {
cin >> a[i];
}
long long l = -1, r = (long long) N * 1e9;
while (l < r) {
long long mid = (l + r + 1) >> 1;
if (solve(mid).second > k) {
l = mid;
} else {
r = mid - 1;
}
}
assert(solve(l).second > k);
cout << solve(l).first + l * k << '\n';
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
91 ms |
21296 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
75 ms |
10744 KB |
Output is correct |
2 |
Correct |
76 ms |
10976 KB |
Output is correct |
3 |
Correct |
77 ms |
10708 KB |
Output is correct |
4 |
Runtime error |
89 ms |
21576 KB |
Execution killed with signal 6 |
5 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
101 ms |
10880 KB |
Output is correct |
2 |
Correct |
102 ms |
10752 KB |
Output is correct |
3 |
Correct |
106 ms |
10852 KB |
Output is correct |
4 |
Correct |
103 ms |
10700 KB |
Output is correct |
5 |
Correct |
106 ms |
10828 KB |
Output is correct |
6 |
Correct |
123 ms |
10912 KB |
Output is correct |
7 |
Correct |
104 ms |
10952 KB |
Output is correct |
8 |
Correct |
104 ms |
10848 KB |
Output is correct |
9 |
Correct |
107 ms |
10984 KB |
Output is correct |
10 |
Correct |
106 ms |
10932 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
212 KB |
Output is correct |
2 |
Runtime error |
2 ms |
452 KB |
Execution killed with signal 6 |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
212 KB |
Output is correct |
2 |
Runtime error |
2 ms |
452 KB |
Execution killed with signal 6 |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
212 KB |
Output is correct |
2 |
Runtime error |
2 ms |
452 KB |
Execution killed with signal 6 |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
91 ms |
21296 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |