codeforces 1175 D. Array Splitting

The meaning of problems: n m long sequence into a non-empty string segments. Making formula and maximum.

And seeking suffix, the title corresponding to formula, selected from the sum of m and suffixes. Wherein the sum [1] is mandatory.

#include <iostream>
#include <cstdio>
#include <cmath>
#include <algorithm>
#include <vector>
#include <iomanip>
#include <cstring>
#include <map>
#include <queue>
#include <set>
#include <cassert>
#include <stack>
#include <bitset>
#define mkp make_pair
#define err cout<<"err"<<endl
using namespace std;
const double EPS=1e-8;
typedef long long lon;
typedef unsigned long long ull;
typedef pair<int,int> pii;
const lon SZ=300010,SSZ=SZ*SZ,APB=4,one=1;
const lon INF=0x3f3f3f3f,mod=1000000007;
lon n,m,arr[SZ],sum[SZ];

void init()
{
    cin>>n>>m;
    for(int i=1;i<=n;++i)cin>>arr[i];
    for(int i=n;i>=1;--i)
    {
        sum[i]=sum[i+1]+arr[i];
    }
    lon res=sum[1];
    sort(sum+2,sum+1+n);
    for(int i=n;(n-i+1)<=m-1;--i)
    {
        res+=sum[i];
    }
    cout<<res<<endl;
}

void work()
{
    
}

void release()
{
    
}

int main()
{
    std::ios::sync_with_stdio(0);
    //freopen("d:\\1.txt","r",stdin);
    lon casenum;
    //cin>>casenum;
    //cout<<casenum<<endl;
    //for(lon tim=1;tim<=casenum;++tim)
    //for(lon tim=1;cin>>n;++tim)
    {
        //cout<<"Case #"<<tim<<": ";
        init();
        work();
        release();
    }
    return 0;
}

 

Guess you like

Origin www.cnblogs.com/gaudar/p/11529009.html