結果

問題 No.919 You Are A Project Manager
ユーザー りあんりあん
提出日時 2019-10-25 22:05:15
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 2,054 bytes
コンパイル時間 2,597 ms
コンパイル使用メモリ 213,604 KB
実行使用メモリ 199,308 KB
最終ジャッジ日時 2024-09-13 03:57:00
合計ジャッジ時間 59,585 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,904 ms
199,296 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 50 ms
16,384 KB
testcase_05 AC 59 ms
18,560 KB
testcase_06 AC 4 ms
6,944 KB
testcase_07 AC 649 ms
39,552 KB
testcase_08 AC 51 ms
6,940 KB
testcase_09 AC 29 ms
6,940 KB
testcase_10 AC 79 ms
8,320 KB
testcase_11 AC 72 ms
7,680 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 117 ms
10,240 KB
testcase_14 AC 3 ms
6,940 KB
testcase_15 AC 15 ms
6,944 KB
testcase_16 AC 216 ms
15,744 KB
testcase_17 AC 1,543 ms
199,040 KB
testcase_18 AC 1,800 ms
199,168 KB
testcase_19 AC 1,957 ms
199,296 KB
testcase_20 TLE -
testcase_21 AC 1,953 ms
199,308 KB
testcase_22 AC 739 ms
45,440 KB
testcase_23 AC 707 ms
43,520 KB
testcase_24 AC 794 ms
48,128 KB
testcase_25 AC 741 ms
45,184 KB
testcase_26 TLE -
testcase_27 AC 2,425 ms
130,432 KB
testcase_28 TLE -
testcase_29 AC 1,496 ms
199,040 KB
testcase_30 AC 1,491 ms
199,168 KB
testcase_31 AC 1,238 ms
199,168 KB
testcase_32 AC 1,566 ms
198,912 KB
testcase_33 AC 870 ms
52,608 KB
testcase_34 AC 873 ms
52,736 KB
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 AC 2 ms
6,944 KB
testcase_40 AC 15 ms
6,944 KB
testcase_41 AC 3 ms
6,944 KB
testcase_42 AC 4 ms
6,944 KB
testcase_43 AC 7 ms
6,940 KB
testcase_44 AC 25 ms
6,940 KB
testcase_45 AC 4 ms
6,940 KB
testcase_46 AC 19 ms
6,940 KB
testcase_47 AC 744 ms
45,696 KB
testcase_48 AC 724 ms
44,416 KB
testcase_49 AC 823 ms
49,664 KB
testcase_50 AC 740 ms
45,056 KB
testcase_51 AC 632 ms
39,040 KB
testcase_52 AC 405 ms
26,624 KB
testcase_53 AC 631 ms
39,040 KB
testcase_54 AC 16 ms
6,944 KB
testcase_55 AC 2 ms
6,944 KB
testcase_56 AC 2 ms
6,940 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;
        mid[i + 1][i] = a[i];
        if (i == n - 1) continue;

        mid[i + 2][i] = min(a[i], a[i + 1]);
        lq.push(min(a[i], a[i + 1]));
        uq.push(max(a[i], a[i + 1]));
        for (int j = i + 2; j < n; ++j) {
            if (lq.top() <= a[j] && a[j] <= uq.top()) {
                if (lq.size() == uq.size())
                    lq.push(a[j]);
                else
                    uq.push(a[j]);
            }
            else if (lq.top() > a[j]) {
                lq.push(a[j]);
                while (lq.size() > uq.size() + 1) {
                    uq.push(lq.top());
                    lq.pop();
                }
            }
            else {
                uq.push(a[j]);
                while (uq.size() > lq.size()) {
                    lq.push(uq.top());
                    uq.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