Submission #311360

# Submission time Handle Problem Language Result Execution time Memory
311360 2020-10-10T01:36:36 Z zaneyu Split the sequence (APIO14_sequence) C++14
0 / 100
82 ms 131076 KB
/*input
7 3
4 1 3 4 0 2 3
1 1 0
1 2 0
1 3 0
2 1 4
2 2 4
2 3 4
3 1 16
3 2 19
3 3 19
4 1 35
4 2 48
4 3 51
5 1 35
5 2 48
5 3 51
6 1 48
6 2 64
6 3 72
7 1 72
7 2 95
7 3 108
*/
#include<bits/stdc++.h>
//#include <ext/pb_ds/assoc_container.hpp>
//#include <ext/pb_ds/tree_policy.hpp>
using namespace std;
//using namespace __gnu_pbds;
//typedef tree<pair<int,int>, null_type, less<pair<int,int>>, rb_tree_tag, tree_order_statistics_node_update> indexed_set;
#pragma GCC optimize("unroll-loops,no-stack-protector")
//order_of_key #of elements less than x
// find_by_order kth element
typedef long long int ll;
#define ld double
#define pii pair<int,int>
#define f first
#define s second
#define pb push_back
#define REP(i,n) for(ll i=0;i<n;i++)
#define REP1(i,n) for(int i=1;i<=n;i++)
#define FILL(n,x) memset(n,x,sizeof(n))
#define ALL(_a) _a.begin(),_a.end()
#define sz(x) (int)x.size()
const ll maxn=1e5+5;
const ll maxlg=__lg(maxn)+2;
const ll INF64=4e18;
const int INF=0x3f3f3f3f;
const ll MOD=1e9+7;
const ld PI=3.14159265358979323846;
const ld eps=1e-9;
#define lowb(x) x&(-x)
#define MNTO(x,y) x=min(x,(__typeof__(x))y)
#define MXTO(x,y) x=max(x,(__typeof__(x))y)
#define SORT_UNIQUE(c) (sort(c.begin(),c.end()), c.resize(distance(c.begin(),unique(c.begin(),c.end()))))
#define GET_POS(c,x) (lower_bound(c.begin(),c.end(),x)-c.begin())
#define MP make_pair
ll mult(ll a,ll b){
    return ((a%MOD)*(b%MOD))%MOD;
}
ll mypow(ll a,ll b){
    ll res=1LL;
    while(b){
        if(b&1) res=mult(res,a);
        a=mult(a,a);
        b>>=1;
    }
    return res;
}
struct line{
    ll m,c;
    ll get(ll x){
        return x*m+c;
    }
    ld intersect(line x){
        return (ld)(x.c-c)/(m-x.m+0.000001);
    }
};
ll dp[maxn][205];
int par[maxn][205];
deque<pair<line,int>> dq[205];
ll pref[maxn];

int main(){
    ios::sync_with_stdio(false),cin.tie(0);
    int n,k;
    cin>>n>>k;
    REP1(i,n){
        int x;
        cin>>x;
        pref[i]=pref[i-1]+x;
    }
    REP(j,k){
        line c={0,0};
        dq[j].pb({c,0});
    }
    REP1(i,n){
        for(int j=k;j>=1;j--){
            while(sz(dq[j-1])>1 and dq[j-1].front().f.get(pref[i])<dq[j-1][1].f.get(pref[i])){
                dq[j-1].pop_front();
            }
            //REP(z,i) MXTO(dp[i][j],dp[z][j-1]+(pref[i]-pref[z])*pref[z]);
            dp[i][j]=dq[j-1].front().f.get(pref[i]);
            par[i][j]=dq[j-1].front().s;
            //cout<<i<<' '<<j<<' '<<dp[i][j]<<'\n';
            line c={pref[i],dp[i][j]-pref[i]*pref[i]};
            while(sz(dq[j])>1 and c.intersect(dq[j].back().f)<=dq[j].back().f.intersect(dq[j][sz(dq[j])-2].f)) dq[j].pop_back();
            dq[j].pb({c,i});
        }
        line c={pref[i],-pref[i]*pref[i]};
        dq[0].pb({c,i});
    }
    cout<<dp[n][k]<<'\n';
    int ci=n,cj=k;
    vector<int> v;
    while(cj){
        ci=par[ci][cj];
        v.pb(ci);
        --cj;
    }
    reverse(ALL(v));
    for(auto x:v) cout<<x<<' ';
}
# Verdict Execution time Memory Grader output
1 Correct 1 ms 512 KB contestant found the optimal answer: 108 == 108
2 Correct 1 ms 512 KB contestant found the optimal answer: 999 == 999
3 Incorrect 1 ms 512 KB Integer 0 violates the range [1, 1]
4 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 640 KB contestant didn't find the optimal answer: 1093864 < 1093956
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 1024 KB contestant didn't find the optimal answer: 510641740 < 610590000
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 2944 KB contestant didn't find the optimal answer: 21173068 < 21503404
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 14 ms 25216 KB contestant didn't find the optimal answer: 1595907756 < 1818678304
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 82 ms 131076 KB Execution killed with signal 9 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -