This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
#define int int64_t
#ifdef LOCAL
#include "algo/debug.h"
#endif
#define f first
#define s second
template<class T> using V = vector<T>;
using vi = V<int>;
using vb = V<bool>;
using vs = V<string>;
#define all(x) begin(x), end(x)
#define rall(x) rbegin(x), rend(x)
#define pb push_back
#define lb lower_bound
#define ub upper_bound
template<class T> int lwb(V<T>& a, const T& b) { return lb(all(a),b)-begin(a); }
template<class T> int upb(V<T>& a, const T& b) { return ub(all(a),b)-begin(a); }
template<class T> bool ckmin(T& a, const T& b) { return a > b ? a=b, true : false; }
template<class T> bool ckmax(T& a, const T& b) { return a < b ? a=b, true : false; }
int n, k;
vi a;
// returns {score, number of segments} with penalty lmb for making a new subarray
array<int, 2> calc(int lmb) {
V<V<array<int, 2>>> dp(n, V<array<int, 2>>(2));
dp[0][1] = {a[0]-lmb, 1};
for (int i = 1; i < n; i++) {
dp[i][0] = max(dp[i-1][0], dp[i-1][1]);
dp[i][1] = max(array<int, 2>{ dp[i-1][0][0]+a[i]-lmb, dp[i-1][0][1]+1 },
array<int, 2>{ dp[i-1][1][0]+a[i], dp[i-1][1][1] });
}
return max(dp[n-1][0], dp[n-1][1]);
}
void solve() {
cin >> n >> k;
a.resize(n); for (int i = 0; i < n; i++) cin >> a[i];
int lo = 0;
int hi = 1e18;
while (lo < hi) {
int mid = (lo + hi + 1) / 2;
calc(mid)[1] >= k ? lo = mid : hi = mid - 1;
}
cout << calc(lo)[0]+lo*k << '\n';
// int lo = -1, hi = 1e18;
// while (hi-lo > 1) {
// int m = (lo+hi)/2;
// auto res = calc(m);
// res[1] >= k ? lo = m : hi = m;
// }
// if (lo == -1) {
// cout << 0 << '\n';
// return;
// }
// auto ans = calc(lo);
// cout << ans[0]+lo*k << '\n';
}
signed main() {
ios::sync_with_stdio(false);
cin.tie(0); cout.tie(0);
solve();
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |