This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
//Suleyman Atayew
#include <algorithm>
#include <iostream>
#include <string.h>
#include <stdio.h>
#include <vector>
#include <bitset>
#include <queue>
#include <cmath>
#include <map>
#include <set>
#define N 200010
#define ff first
#define ss second
#define pb push_back
#define ll long long
#define mod 1000000007
#define pii pair <int, int>
#define sz(a) (int)(a.size())
ll bigmod(ll a, ll b) { if(b==0)return 1; ll ret = bigmod(a, b/2); return ret * ret % mod * (b%2 ? a : 1) % mod; }
using namespace std;
int n, k;
int v[N], p[N], dp[N][300];
int main()
{
ios::sync_with_stdio(false);
cin.tie(0);
cin >> n >> k;
for(int i = 1; i <= n; i++)
cin >> v[i], p[i] = p[i-1] + v[i];
for(int i = 1; i <= k; i++) {
int in = i;
for(int h = i+1; h <= n; h++) {
while(in+1 < h && (p[h] - p[in-1]) * p[in-1] + dp[in-1][i-1] < (p[h] - p[in]) * p[in] + dp[in][i-1])
in++;
dp[h][i] = (p[h] - p[in-1]) * p[in-1] + dp[in-1][i-1];
// cout << dp[h][i] << " ";
}
// cout << "\n";
}
cout << dp[n][k];
}
/*
7 3
4 1 3 4 0 2 3
*/
# | 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... |