# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
337134 | bigDuck | Split the sequence (APIO14_sequence) | C++14 | 48 ms | 6764 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;
#define INIT ios_base :: sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL);mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
#define mp make_pair
#define pb push_back
#define ft first
#define sc second
#define ll long long
#define pii pair<int, int>
#define count_bits __builtin_popcount
int t, n, m, k, a[300010], q, l, r;
int dp[1010][210];
int p[1010];
int dir[1010][210];
vector<int> v;
int32_t main(){
INIT
scanf("%d", &n);
scanf("%d" , &k);
for(int i=1; i<=n ;i++){
scanf("%d", &a[i]);
p[i]=p[i-1]+a[i];
}
dp[0][0]=0;
k++;
for(int i=1; i<=n; i++){
for(int g=0; g<=k; g++){
dp[i][g]=-1;
}
for(int j=i-1; j>=0; j--){
for(int g=0; g<k; g++){
if(dp[j][g]==-1){continue;}
if(dp[i][g+1]==(-1)){
dp[i][g+1]=dp[j][g]+(p[i]-p[j])*(p[i]-p[j]);
dir[i][g+1]=j;
}
else{
if( (dp[j][g]+(p[i]-p[j])*(p[i]-p[j]))<dp[i][g+1] ){
dir[i][g+1]=j;
}
dp[i][g+1]=min(dp[i][g+1], dp[j][g]+(p[i]-p[j])*(p[i]-p[j]));
}
}
}
}
cout<<( ((p[n]*p[n])-dp[n][k])/2 );
cout<<"\n";
int cnt=1, cr=n;
while(cnt<k){
v.pb(dir[cr][k-cnt+1]);
cnt++; cr=dir[cr][k-cnt+1];
}
for(int i=k-1-1; i>=0; i--){
cout<<v[i]<<" ";
}
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... |