Submission #498385

#TimeUsernameProblemLanguageResultExecution timeMemory
498385NalrimetSplit the sequence (APIO14_sequence)C++17
0 / 100
465 ms131076 KiB
#include <bits/stdc++.h>
using namespace std;

//#define int long long
#define ll long long
#define ld long double
#define pb push_back
#define S second
#define F first

//const int inf = 1e18;
const int N = 100005;

int n, y, k, par[N][205];
ll a[N], b[N], pref[N], suma, dp[N][205];
bool cut[N][205];
vector<int> ans;

ll f(int i, int j, int m){
//    cout << x << ' ' << y << ' ' << pref[x] << ' ' << suma << '\n';
//    cout << i << ' ' << j << ' ' << m << '\n';
//    cout << dp[m][j - 1] << ' ' << (pref[i] - pref[m]) << ' ' << (pref[n] - pref[i]) << '\n';
    return dp[m][j - 1] + (pref[i] - pref[m]) * (pref[n] - pref[i]);
}

 main(){
//	ios_base::sync_with_stdio(0);
//	cin.tie(0);
//	cout.tie(0);

    cin >> n >> k;
    k++;
    for(int i = 1; i <= n; ++i){
        cin >> a[i];
        pref[i] = pref[i - 1] + a[i];
    }

    for(int i = 1; i <= n; ++i){
        for(int j = 2; j <= min(i + 1, k); ++j){
            int l = 0, r = i - 1;
            while(r - l > 2){
                int m1 = l + (r - l) / 3, m2 = r - (r - l) / 3;
                if(f(i, j, m1) < f(i, j, m2))
                    l = m1;
                else
                    r = m2;
            }
//            cout << l << ' ' << r << '\n';
            if(f(i, j, l) >= f(i, j, l + 1)) r = l;
            else l++;
            if(f(i, j, l) >= f(i, j, l + 1)) r = l;
            else l++;

//            cout << l << ' ' << r << '\n';
            dp[i][j] = f(i, j, l);
            if(dp[i][j] > dp[i - 1][j]) {
                cut[i][j] = 1;
                par[i][j] = l;
            }
            else{
                dp[i][j] = dp[i - 1][j];
                par[i][j] = i - 1;
            }
//            cout << i << ' ' << j << ' ' << dp[i][j] << '\n';
        }
    }
    cout << dp[n][k] << '\n';

    int ind = n;
    while(ind != 0){
        if(cut[ind][k]) {
            ans.pb(ind);
            ind = par[ind][k];
            k--;
        }
        else ind = par[ind][k];
    }

    reverse(ans.begin(), ans.end());

    for(auto to : ans){
        cout << to << ' ';
    }
}

Compilation message (stderr)

sequence.cpp:26:2: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   26 |  main(){
      |  ^~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...