# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
215924 | T0p_ | Split the sequence (APIO14_sequence) | C++14 | 40 ms | 5368 KiB |
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;
int back[202][100100];
long long arr[100100], qs[100100], dp[202][100100];
stack<int> p;
int main()
{
int n, m;
scanf(" %d %d",&n,&m);
for(int i=1 ; i<=n ; i++)
{
scanf(" %lld",&arr[i]);
qs[i] = arr[i] + qs[i-1];
}
for(int i=1 ; i<=m ; i++)
{
for(int j=i ; j<=n ; j++)
{
int l = i-1, r = j-1;
while(l != r)
{
int mid = (l+r+1)>>1;
int bef = mid-1;
long long vm = dp[i-1][mid] + (qs[j] - qs[mid]) * (qs[n] - qs[j]);
long long vb = dp[i-1][bef] + (qs[j] - qs[bef]) * (qs[n] - qs[j]);
if(vm > vb) l = mid;
else r = mid-1;
}
dp[i][j] = dp[i-1][l] + (qs[j] - qs[l]) * (qs[n] - qs[j]);
back[i][j] = l;
// for(int k=i-1 ; k<j ; k++)
// {
// long long nv = dp[i-1][k] + (qs[j] - qs[k]) * (qs[n] - qs[j]);
// if(nv > dp[i][j])
// {
// cout << i << ' ' << j << ' ' << k << endl;
// dp[i][j] = nv;
// pos = k;
// }
// }
// back[i][j] = pos;
// cout << back[i][j] << ' ';
}
// cout << endl;
}
int pos;
long long Mval = 0;
for(int i=m ; i<=n ; i++)
{
if(dp[m][i] > Mval)
{
Mval = dp[m][i];
pos = i;
}
}
for(int i=m ; i>0 ; i--)
{
p.push(pos);
pos = back[i][pos];
}
printf("%lld\n",Mval);
while(!p.empty())
{
printf("%d ",p.top());
p.pop();
}
return 0;
}
Compilation message (stderr)
# | 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... |