Submission #960796

# Submission time Handle Problem Language Result Execution time Memory
960796 2024-04-11T04:17:34 Z Whisper Split the sequence (APIO14_sequence) C++17
71 / 100
55 ms 131072 KB
#include <bits/stdc++.h>
#pragma GCC optmize("Ofast")
using namespace std;
using ll = long long;

#define int long long
#define FOR(i, a, b) for (int i = a; i <= b; i++)
#define FORD(i, a, b) for (int i = b; i >= a; i --)
#define REP(i, n) for (int i = 0; i < n; ++i)
#define REPD(i, n) for (int i = n - 1; i >= 0; --i)

#define MASK(i) (1LL << (i))
#define BIT(x, i) (((x) >> (i)) & 1)

constexpr ll LINF = (1ll << 60);
constexpr int INF = (1ll << 30);
constexpr int Mod = 1e9 + 7;
mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());

void setupIO(){
    #define name "Whisper"
    //Phu Trong from Nguyen Tat Thanh High School for gifted student
    srand(time(NULL));
    cin.tie(nullptr)->sync_with_stdio(false); cout.tie(nullptr);
    //freopen(name".inp", "r", stdin);
    //freopen(name".out", "w", stdout);
    cout << fixed << setprecision(10);
}

template <class X, class Y>
    bool minimize(X &x, const Y &y){
        X eps = 1e-9;
        if (x > y + eps) {x = y; return 1;}
        return 0;
    }

template <class X, class Y>
    bool maximize(X &x, const Y &y){
        X eps = 1e-9;
        if (x + eps < y) {x = y; return 1;}
        return 0;
    }
int nArr, nGroup;
const int MAX = 1e5 + 5;
int a[MAX];


int dp[MAX][2];
int opt[MAX][202];
int s[MAX];

struct Line{
    int a, b, id;
    Line(): a(0), b(0), id(-1){}
    Line(int _a, int _b, int _id): a(_a), b(_b), id(_id){}

    int f(int x){ return a * x + b; }
    double cross(Line o){
        return (double) (b - o.b) / (double)(o.a - a);
    }
};

//slope is increasing and query is also increasing

struct CHT{
    deque<Line> q;
    bool bad(Line a, Line b, Line c){
        return a.cross(c) <= a.cross(b);
    }
    void addLine(Line line){
        while (q.size() >= 2 && (bad(q.end()[-1], q.end()[-2], line) || (q.back().a == line.a && q.back().b <= line.b)))
            q.pop_back();
        q.push_back(line);
    }

    pair<int, int> query(int x){
        while (q.size() >= 2 && q[0].f(x) <= q[1].f(x))
            q.pop_front();
        return make_pair(q[0].f(x), q[0].id);
    }
};
void Whisper(){
    cin >> nArr >> nGroup; ++nGroup;

    for (int i = 1; i <= nArr; ++i) cin >> a[i], s[i] = s[i - 1] + a[i];

    //s[nArr] * s[i] - s[nArr] * s[j] - s[i] * s[i] + s[i] * s[j]
    //using s(j) as x we have equation
    //s(j) * x + - s(nArr) * s(j) - s(i) * s(i) + s(nArr) * s(i) + dp(j, k - 1)
    for (int k = 1; k <= nGroup; ++k){
        CHT cht;
        cht.addLine(Line(0, 0, 0));
        for (int i = 1; i <= nArr; ++i){
            pair<int, int> ret = cht.query(s[i]);
            dp[i][1] = ret.first + s[nArr] * s[i] - s[i] * s[i];
            opt[i][k] = ret.second;
            cht.addLine(Line(s[i], -s[i] * s[nArr] + dp[i][0], i));
        }
        for (int i = 1; i <= nArr; ++i){
            dp[i][0] = dp[i][1];
        }
    }
    cout << dp[nArr][0] << '\n';
    vector<int> ans;
    int current = nArr;
    while(nGroup > 0){
        if (current != nArr)
            ans.push_back(current);
        current = opt[current][nGroup];
        nGroup--;
    }
    reverse(ans.begin(), ans.end());
    for (int&v : ans) cout << v << " ";
}


signed main(){
    setupIO();
    int Test = 1;
//    cin >> Test;
    for ( int i = 1 ; i <= Test ; i++ ){
        Whisper();
        if (i < Test) cout << '\n';
    }
}


Compilation message

sequence.cpp:2: warning: ignoring '#pragma GCC optmize' [-Wunknown-pragmas]
    2 | #pragma GCC optmize("Ofast")
      |
# Verdict Execution time Memory Grader output
1 Correct 2 ms 2396 KB contestant found the optimal answer: 108 == 108
2 Correct 1 ms 2548 KB contestant found the optimal answer: 999 == 999
3 Correct 1 ms 2396 KB contestant found the optimal answer: 0 == 0
4 Correct 1 ms 2396 KB contestant found the optimal answer: 1542524 == 1542524
5 Correct 1 ms 2396 KB contestant found the optimal answer: 4500000000 == 4500000000
6 Correct 1 ms 2396 KB contestant found the optimal answer: 1 == 1
7 Correct 1 ms 2392 KB contestant found the optimal answer: 1 == 1
8 Correct 1 ms 2392 KB contestant found the optimal answer: 1 == 1
9 Correct 2 ms 2396 KB contestant found the optimal answer: 100400096 == 100400096
10 Correct 1 ms 2396 KB contestant found the optimal answer: 900320000 == 900320000
11 Correct 1 ms 2396 KB contestant found the optimal answer: 3698080248 == 3698080248
12 Correct 1 ms 2396 KB contestant found the optimal answer: 3200320000 == 3200320000
13 Correct 1 ms 2396 KB contestant found the optimal answer: 140072 == 140072
14 Correct 1 ms 2396 KB contestant found the optimal answer: 376041456 == 376041456
15 Correct 1 ms 2396 KB contestant found the optimal answer: 805 == 805
16 Correct 1 ms 2396 KB contestant found the optimal answer: 900189994 == 900189994
17 Correct 1 ms 2396 KB contestant found the optimal answer: 999919994 == 999919994
# Verdict Execution time Memory Grader output
1 Correct 1 ms 2396 KB contestant found the optimal answer: 1093956 == 1093956
2 Correct 1 ms 2396 KB contestant found the optimal answer: 302460000 == 302460000
3 Correct 1 ms 2396 KB contestant found the optimal answer: 122453454361 == 122453454361
4 Correct 1 ms 2396 KB contestant found the optimal answer: 93663683509 == 93663683509
5 Correct 1 ms 2396 KB contestant found the optimal answer: 1005304678 == 1005304678
6 Correct 1 ms 2396 KB contestant found the optimal answer: 933702 == 933702
7 Correct 1 ms 2396 KB contestant found the optimal answer: 25082842857 == 25082842857
8 Correct 1 ms 2396 KB contestant found the optimal answer: 687136 == 687136
9 Correct 1 ms 2396 KB contestant found the optimal answer: 27295930079 == 27295930079
10 Correct 1 ms 2396 KB contestant found the optimal answer: 29000419931 == 29000419931
# Verdict Execution time Memory Grader output
1 Correct 1 ms 2392 KB contestant found the optimal answer: 610590000 == 610590000
2 Correct 1 ms 2396 KB contestant found the optimal answer: 311760000 == 311760000
3 Correct 2 ms 2396 KB contestant found the optimal answer: 1989216017013 == 1989216017013
4 Correct 1 ms 2396 KB contestant found the optimal answer: 1499437552673 == 1499437552673
5 Correct 2 ms 2392 KB contestant found the optimal answer: 1019625819 == 1019625819
6 Correct 1 ms 2396 KB contestant found the optimal answer: 107630884 == 107630884
7 Correct 1 ms 2396 KB contestant found the optimal answer: 475357671774 == 475357671774
8 Correct 1 ms 2392 KB contestant found the optimal answer: 193556962 == 193556962
9 Correct 1 ms 2396 KB contestant found the optimal answer: 482389919803 == 482389919803
10 Correct 1 ms 2396 KB contestant found the optimal answer: 490686959791 == 490686959791
# Verdict Execution time Memory Grader output
1 Correct 1 ms 2648 KB contestant found the optimal answer: 21503404 == 21503404
2 Correct 1 ms 2652 KB contestant found the optimal answer: 140412195 == 140412195
3 Correct 5 ms 2724 KB contestant found the optimal answer: 49729674225461 == 49729674225461
4 Correct 1 ms 2652 KB contestant found the optimal answer: 37485571387523 == 37485571387523
5 Correct 5 ms 2652 KB contestant found the optimal answer: 679388326 == 679388326
6 Correct 5 ms 2652 KB contestant found the optimal answer: 4699030287 == 4699030287
7 Correct 6 ms 2652 KB contestant found the optimal answer: 12418819758185 == 12418819758185
8 Correct 5 ms 2720 KB contestant found the optimal answer: 31093317350 == 31093317350
9 Correct 2 ms 2648 KB contestant found the optimal answer: 12194625429236 == 12194625429236
10 Correct 3 ms 4444 KB contestant found the optimal answer: 12345131038664 == 12345131038664
# Verdict Execution time Memory Grader output
1 Correct 7 ms 17244 KB contestant found the optimal answer: 1818678304 == 1818678304
2 Correct 7 ms 17412 KB contestant found the optimal answer: 1326260195 == 1326260195
3 Correct 55 ms 17320 KB contestant found the optimal answer: 4973126687469639 == 4973126687469639
4 Correct 8 ms 17244 KB contestant found the optimal answer: 3748491676694116 == 3748491676694116
5 Correct 40 ms 17248 KB contestant found the optimal answer: 1085432199 == 1085432199
6 Correct 46 ms 17244 KB contestant found the optimal answer: 514790755404 == 514790755404
7 Correct 47 ms 17244 KB contestant found the optimal answer: 1256105310476641 == 1256105310476641
8 Correct 38 ms 17244 KB contestant found the optimal answer: 3099592898816 == 3099592898816
9 Correct 42 ms 17316 KB contestant found the optimal answer: 1241131419367412 == 1241131419367412
10 Correct 52 ms 17240 KB contestant found the optimal answer: 1243084101967798 == 1243084101967798
# Verdict Execution time Memory Grader output
1 Runtime error 53 ms 131072 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -