답안 #799090

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
799090 2023-07-31T09:34:08 Z hungby04 수열 (APIO14_sequence) C++17
100 / 100
698 ms 83884 KB
/// HuDzG
#include <bits/stdc++.h>
#define reset(a) memset(a,0,sizeof(a))
#define ll long long
#define ld long double
#define endl '\n'
#define AutoAC int main()
#define OO 1000000000000000000
#define F first
#define S second
#define pii pair <int, int>
#define pll pair <ll, ll>
#define pb push_back
#define mp make_pair
#define nmax 1000005
#define HUNGIT ""
#define MOD 1000000007

using namespace std;

int n, k;
int a[nmax], tr[205][nmax];
ll sum[nmax], f[2][nmax];

struct Line
{
    ll a, b;
    int id;
    Line(ll a = 0, ll b = 0, int id = 0) : a(a), b(b), id(id) {}

    ll getValue(ll x)
    {
        return a * x + b;
    }
};

double slope(Line A, Line B)
{
    if(A.a == B.a) return (A.b < B.b ? -OO : OO);
    return (double) (A.b - B.b) / (B.a - A.a);
}

void solve()
{
    cin >> n >> k;
    for (int i = 1; i <= n; i++)
    {
        cin >> a[i];
        sum[i] = sum[i - 1] + 1ll * a[i] * a[i - 1];
        a[i] += a[i - 1];
        f[0][i] = OO;
    }
    // f[k][i] = f[k - 1][j] + sum[i] - sum[j] - (a[i] - a[j]) * a[j];
    for (int j = 1; j <= k + 1; j++)
    {
        int Now = (j & 1), Pre = ((j - 1) & 1);
        deque <Line> D;
        D.push_back(Line(-a[j - 1], f[Pre][j - 1] - sum[j - 1] + 1ll * a[j - 1] * a[j - 1], j - 1));
        for (int i = j; i <= n; i++)
        {
            while (D.size() > 1 && slope(D[0], D[1]) < a[i]) D.pop_front();
            f[Now][i] = D[0].getValue(a[i]) + sum[i];
            tr[j][i] = D[0].id;
            Line tmp(-a[i], f[Pre][i] - sum[i] + 1ll * a[i] * a[i], i);
            while (D.size() > 1 && slope(tmp, D.back()) < slope(D.back(), D[(int)D.size() - 2])) D.pop_back();
            if(tmp.a != D.back().a) D.push_back(tmp);
        }
    }
    cout << sum[n] - f[(k + 1) & 1][n] << endl;
    vector <int> res;
    n = tr[k + 1][n];
    k--;
    while (n > 0)
    {
        res.pb(n);
        n = tr[k + 1][n];
        k--;
    }
    reverse(res.begin(), res.end());
    for (int x : res) cout << x << " ";
    // int res = 0;
    // for(int i = 1; i <= n; i++)
    //     for(int j = 1; j <= n; j++)
    //         if(i != j) res += a[i] * a[j];
    // cout << res / 2;
}

AutoAC
{
    // clock_t START, FINISH;
    // START = clock();
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    cout.tie(0);
    // freopen (HUNGIT".inp", "r", stdin);
    // freopen (HUNGIT".out", "w", stdout);
    int T = 1;

    // cin >> T;

    for (int i = 1; i <= T; i++)
    {
        solve();
    }

    // FINISH = clock();
    // cout << fixed << setprecision(4);
    // cout << endl << "TIME: " << (ld)((ld)(FINISH - START) / CLOCKS_PER_SEC);
    return 0;
}

# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 340 KB contestant found the optimal answer: 108 == 108
2 Correct 0 ms 340 KB contestant found the optimal answer: 999 == 999
3 Correct 1 ms 340 KB contestant found the optimal answer: 0 == 0
4 Correct 1 ms 340 KB contestant found the optimal answer: 1542524 == 1542524
5 Correct 1 ms 340 KB contestant found the optimal answer: 4500000000 == 4500000000
6 Correct 1 ms 328 KB contestant found the optimal answer: 1 == 1
7 Correct 0 ms 336 KB contestant found the optimal answer: 1 == 1
8 Correct 0 ms 340 KB contestant found the optimal answer: 1 == 1
9 Correct 0 ms 340 KB contestant found the optimal answer: 100400096 == 100400096
10 Correct 1 ms 340 KB contestant found the optimal answer: 900320000 == 900320000
11 Correct 0 ms 328 KB contestant found the optimal answer: 3698080248 == 3698080248
12 Correct 1 ms 324 KB contestant found the optimal answer: 3200320000 == 3200320000
13 Correct 1 ms 340 KB contestant found the optimal answer: 140072 == 140072
14 Correct 1 ms 340 KB contestant found the optimal answer: 376041456 == 376041456
15 Correct 1 ms 340 KB contestant found the optimal answer: 805 == 805
16 Correct 1 ms 332 KB contestant found the optimal answer: 900189994 == 900189994
17 Correct 1 ms 328 KB contestant found the optimal answer: 999919994 == 999919994
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 324 KB contestant found the optimal answer: 1093956 == 1093956
2 Correct 1 ms 340 KB contestant found the optimal answer: 302460000 == 302460000
3 Correct 1 ms 724 KB contestant found the optimal answer: 122453454361 == 122453454361
4 Correct 1 ms 324 KB contestant found the optimal answer: 93663683509 == 93663683509
5 Correct 1 ms 340 KB contestant found the optimal answer: 1005304678 == 1005304678
6 Correct 0 ms 340 KB contestant found the optimal answer: 933702 == 933702
7 Correct 1 ms 456 KB contestant found the optimal answer: 25082842857 == 25082842857
8 Correct 1 ms 324 KB contestant found the optimal answer: 687136 == 687136
9 Correct 0 ms 340 KB contestant found the optimal answer: 27295930079 == 27295930079
10 Correct 1 ms 468 KB contestant found the optimal answer: 29000419931 == 29000419931
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 340 KB contestant found the optimal answer: 610590000 == 610590000
2 Correct 1 ms 340 KB contestant found the optimal answer: 311760000 == 311760000
3 Correct 2 ms 2004 KB contestant found the optimal answer: 1989216017013 == 1989216017013
4 Correct 1 ms 340 KB contestant found the optimal answer: 1499437552673 == 1499437552673
5 Correct 1 ms 1480 KB contestant found the optimal answer: 1019625819 == 1019625819
6 Correct 1 ms 1876 KB contestant found the optimal answer: 107630884 == 107630884
7 Correct 1 ms 2004 KB contestant found the optimal answer: 475357671774 == 475357671774
8 Correct 1 ms 724 KB contestant found the optimal answer: 193556962 == 193556962
9 Correct 1 ms 596 KB contestant found the optimal answer: 482389919803 == 482389919803
10 Correct 1 ms 840 KB contestant found the optimal answer: 490686959791 == 490686959791
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 340 KB contestant found the optimal answer: 21503404 == 21503404
2 Correct 1 ms 304 KB contestant found the optimal answer: 140412195 == 140412195
3 Correct 6 ms 2644 KB contestant found the optimal answer: 49729674225461 == 49729674225461
4 Correct 1 ms 340 KB contestant found the optimal answer: 37485571387523 == 37485571387523
5 Correct 6 ms 2644 KB contestant found the optimal answer: 679388326 == 679388326
6 Correct 6 ms 2260 KB contestant found the optimal answer: 4699030287 == 4699030287
7 Correct 7 ms 2640 KB contestant found the optimal answer: 12418819758185 == 12418819758185
8 Correct 5 ms 2644 KB contestant found the optimal answer: 31093317350 == 31093317350
9 Correct 2 ms 852 KB contestant found the optimal answer: 12194625429236 == 12194625429236
10 Correct 3 ms 1260 KB contestant found the optimal answer: 12345131038664 == 12345131038664
# 결과 실행 시간 메모리 Grader output
1 Correct 2 ms 852 KB contestant found the optimal answer: 1818678304 == 1818678304
2 Correct 2 ms 928 KB contestant found the optimal answer: 1326260195 == 1326260195
3 Correct 52 ms 10116 KB contestant found the optimal answer: 4973126687469639 == 4973126687469639
4 Correct 2 ms 932 KB contestant found the optimal answer: 3748491676694116 == 3748491676694116
5 Correct 41 ms 6428 KB contestant found the optimal answer: 1085432199 == 1085432199
6 Correct 41 ms 7312 KB contestant found the optimal answer: 514790755404 == 514790755404
7 Correct 54 ms 7728 KB contestant found the optimal answer: 1256105310476641 == 1256105310476641
8 Correct 37 ms 6520 KB contestant found the optimal answer: 3099592898816 == 3099592898816
9 Correct 39 ms 7332 KB contestant found the optimal answer: 1241131419367412 == 1241131419367412
10 Correct 49 ms 9164 KB contestant found the optimal answer: 1243084101967798 == 1243084101967798
# 결과 실행 시간 메모리 Grader output
1 Correct 16 ms 5380 KB contestant found the optimal answer: 19795776960 == 19795776960
2 Correct 18 ms 5408 KB contestant found the optimal answer: 19874432173 == 19874432173
3 Correct 557 ms 83884 KB contestant found the optimal answer: 497313449256899208 == 497313449256899208
4 Correct 15 ms 5844 KB contestant found the optimal answer: 374850090734572421 == 374850090734572421
5 Correct 698 ms 83488 KB contestant found the optimal answer: 36183271951 == 36183271951
6 Correct 438 ms 59656 KB contestant found the optimal answer: 51629847150471 == 51629847150471
7 Correct 506 ms 63824 KB contestant found the optimal answer: 124074747024496432 == 124074747024496432
8 Correct 384 ms 52692 KB contestant found the optimal answer: 309959349080800 == 309959349080800
9 Correct 371 ms 59704 KB contestant found the optimal answer: 124113525649823701 == 124113525649823701
10 Correct 501 ms 75708 KB contestant found the optimal answer: 124309619349406845 == 124309619349406845