Submission #113066

# Submission time Handle Problem Language Result Execution time Memory
113066 2019-05-23T13:45:57 Z dolphingarlic Split the sequence (APIO14_sequence) C++14
0 / 100
15 ms 4008 KB
#include <bits/stdc++.h>
#pragma GCC optimize("O3")
#define FOR(i, x, y) for (int i = x; i < y; i++)
typedef long long ll;
using namespace std;

int n, k;
pair<int, int> dp[201][100001];
int pref[100001];

bool case1(int k, int l, int j, int i) {
    return (dp[i][k].first - dp[i][l].first >
            (pref[k] - pref[l]) * (pref[n] - pref[j]));
}

bool case2(int k, int l, int j, int i) {
    return ((dp[i][l].first - dp[i][k].first) * (pref[j] - pref[k]) >
            (dp[i][j].first - dp[i][k].first) * (pref[k] - pref[l]));
}

int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);
    cin >> n >> k;
    FOR(i, 1, n + 1) {
        int x;
        cin >> x;
        pref[i] = pref[i - 1] + x;
    }

    fill(dp[0], dp[0] + n + 1, make_pair(0, 0));
    FOR(i, 1, k + 1) {
        deque<int> q;
        q.push_back(0);
        dp[i][0] = {0, 0};
        FOR(j, 1, n + 1) {
            while (q.size() > 1 && case1(q[1], q[0], j, i - 1)) q.pop_front();

            int x = q[0];
            dp[i][j] = {dp[i - 1][x].first + (pref[j] - pref[x]) * (pref[n] - pref[j]), x};
            // cout << i << ' ' << j << ' ' << x << ' ' << dp[i][j].first << '\n';

            while (q.size() > 1 && case2(q[q.size() - 2], q[q.size() - 1], j, i - 1)) q.pop_back();
            q.push_back(j);
        }
    }

    int mx = 0, indx;
    FOR(i, 1, n + 1) {
        if (dp[k][i].first > mx) mx = dp[k][i].first, indx = i;
    }
    cout << mx << '\n';
    FOR(i, 0, k) {
        cout << indx << ' ';
        indx = dp[k - i][indx].second;
    }
    cout << '\n';
    return 0;
}

Compilation message

sequence.cpp: In function 'int main()':
sequence.cpp:54:25: warning: 'indx' may be used uninitialized in this function [-Wmaybe-uninitialized]
         cout << indx << ' ';
                         ^~~
# Verdict Execution time Memory Grader output
1 Correct 2 ms 384 KB contestant found the optimal answer: 108 == 108
2 Correct 2 ms 384 KB contestant found the optimal answer: 999 == 999
3 Incorrect 2 ms 384 KB Integer 0 violates the range [1, 1]
4 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 384 KB contestant didn't find the optimal answer: 1092528 < 1093956
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 2 ms 384 KB contestant found the optimal answer: 610590000 == 610590000
2 Correct 2 ms 384 KB contestant found the optimal answer: 311760000 == 311760000
3 Incorrect 4 ms 1792 KB Integer 0 violates the range [1, 199]
4 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 384 KB contestant didn't find the optimal answer: 21456938 < 21503404
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 3 ms 768 KB contestant didn't find the optimal answer: 1322544650 < 1818678304
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 15 ms 4008 KB declared answer doesn't correspond to the split scheme: declared = 2147244875, real = 10737179467
2 Halted 0 ms 0 KB -