結果

問題 No.919 You Are A Project Manager
ユーザー りあんりあん
提出日時 2019-10-25 21:48:59
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,663 bytes
コンパイル時間 2,543 ms
コンパイル使用メモリ 214,504 KB
実行使用メモリ 205,984 KB
最終ジャッジ日時 2024-07-23 17:57:57
合計ジャッジ時間 61,572 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,510 ms
199,168 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 83 ms
16,384 KB
testcase_05 AC 96 ms
18,560 KB
testcase_06 AC 5 ms
6,944 KB
testcase_07 AC 659 ms
39,680 KB
testcase_08 AC 51 ms
6,944 KB
testcase_09 AC 29 ms
6,940 KB
testcase_10 AC 81 ms
8,192 KB
testcase_11 AC 74 ms
7,680 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 120 ms
10,368 KB
testcase_14 AC 3 ms
6,944 KB
testcase_15 AC 16 ms
6,940 KB
testcase_16 AC 221 ms
15,744 KB
testcase_17 AC 2,030 ms
199,168 KB
testcase_18 AC 2,015 ms
199,168 KB
testcase_19 AC 2,432 ms
199,296 KB
testcase_20 TLE -
testcase_21 AC 2,545 ms
199,296 KB
testcase_22 AC 760 ms
45,440 KB
testcase_23 AC 733 ms
43,520 KB
testcase_24 AC 818 ms
48,256 KB
testcase_25 AC 762 ms
45,184 KB
testcase_26 TLE -
testcase_27 AC 2,447 ms
130,560 KB
testcase_28 TLE -
testcase_29 AC 2,047 ms
199,296 KB
testcase_30 AC 2,043 ms
199,168 KB
testcase_31 AC 1,900 ms
199,168 KB
testcase_32 AC 1,887 ms
199,040 KB
testcase_33 AC 899 ms
52,608 KB
testcase_34 AC 895 ms
52,864 KB
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 AC 2 ms
6,944 KB
testcase_40 AC 16 ms
6,944 KB
testcase_41 AC 4 ms
6,948 KB
testcase_42 AC 4 ms
6,940 KB
testcase_43 AC 8 ms
6,944 KB
testcase_44 AC 26 ms
6,940 KB
testcase_45 AC 5 ms
6,944 KB
testcase_46 AC 20 ms
6,948 KB
testcase_47 AC 759 ms
45,824 KB
testcase_48 AC 745 ms
44,416 KB
testcase_49 AC 843 ms
49,664 KB
testcase_50 AC 761 ms
45,184 KB
testcase_51 AC 647 ms
39,168 KB
testcase_52 AC 417 ms
26,624 KB
testcase_53 AC 649 ms
39,040 KB
testcase_54 AC 17 ms
6,944 KB
testcase_55 AC 2 ms
6,944 KB
testcase_56 AC 2 ms
6,944 KB
testcase_57 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
const int M = 1000000007;

int main() {
    cin.tie(0);
    ios::sync_with_stdio(0);
    int n;
    cin >> n;
    vector<int> a(n);
    for (int i = 0; i < n; ++i) {
        cin >> a[i];
    }
    vector<vector<int>> mid(n + 1);
    for (int i = 1; i <= n; ++i) {
        mid[i] = vector<int>(i);
    }
    for (int i = 0; i < n; ++i) {
        priority_queue<int> lq;
        priority_queue<int, vector<int>, greater<int>> uq;
        lq.push(-M);
        uq.push(M);
        for (int j = i; j < n; ++j) {
            if (uq.top() > a[j]) {
                lq.push(a[j]);
            }
            else {
                uq.push(a[j]);
            }
            while (uq.size() > lq.size()) {
                lq.push(uq.top());
                uq.pop();
            }
            while (lq.size() > uq.size() + 1) {
                uq.push(lq.top());
                lq.pop();
            }
            mid[j + 1][i] = lq.top();
        }
    }
    long long ans = 0;
    for (int i = 1; i <= n; ++i) {
        vector<long long> sl(n / i + 1), sr(n / i + 1);
        vector<long long> ml(n / i + 1), mr(n / i + 1);
        for (int j = 0; j < n / i; ++j) {
            sl[j + 1] = sl[j] + mid[(j + 1) * i][j * i] * (long long)i;
            ml[j + 1] = max(ml[j], sl[j + 1]);
        }
        for (int j = 0; j < n / i; ++j) {
            sr[j + 1] = sr[j] + mid[n - j * i][n - (j + 1) * i] * (long long)i;
            mr[j + 1] = max(mr[j], sr[j + 1]);
        }
        for (int j = 0; j < n / i; ++j) {
            ans = max(ans, ml[j] + mr[n / i - j]);
        }
    }
    cout << ans << '\n';

    return 0;
}
0