結果

問題 No.919 You Are A Project Manager
ユーザー machymachy
提出日時 2019-10-25 22:08:18
言語 C++17(clang)
(17.0.6 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 1,534 bytes
コンパイル時間 978 ms
コンパイル使用メモリ 132,336 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2024-11-30 15:32:33
合計ジャッジ時間 82,589 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,789 ms
9,088 KB
testcase_01 AC 1 ms
10,496 KB
testcase_02 AC 2 ms
10,496 KB
testcase_03 AC 1 ms
9,088 KB
testcase_04 AC 93 ms
10,496 KB
testcase_05 AC 113 ms
8,960 KB
testcase_06 AC 6 ms
10,496 KB
testcase_07 AC 1,560 ms
9,088 KB
testcase_08 AC 105 ms
10,496 KB
testcase_09 AC 55 ms
8,960 KB
testcase_10 AC 165 ms
10,496 KB
testcase_11 AC 152 ms
8,960 KB
testcase_12 AC 2 ms
10,496 KB
testcase_13 AC 254 ms
9,088 KB
testcase_14 AC 2 ms
10,496 KB
testcase_15 AC 26 ms
5,248 KB
testcase_16 AC 477 ms
5,248 KB
testcase_17 AC 1,760 ms
5,248 KB
testcase_18 AC 1,715 ms
5,248 KB
testcase_19 AC 2,717 ms
5,248 KB
testcase_20 TLE -
testcase_21 AC 2,725 ms
5,248 KB
testcase_22 AC 1,752 ms
5,248 KB
testcase_23 AC 1,738 ms
5,248 KB
testcase_24 AC 1,905 ms
5,248 KB
testcase_25 AC 1,780 ms
5,248 KB
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 AC 1,758 ms
5,248 KB
testcase_30 AC 1,751 ms
5,248 KB
testcase_31 AC 1,772 ms
5,248 KB
testcase_32 AC 1,757 ms
5,248 KB
testcase_33 AC 2,179 ms
5,248 KB
testcase_34 AC 2,183 ms
5,248 KB
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 AC 2 ms
5,248 KB
testcase_40 AC 30 ms
5,248 KB
testcase_41 AC 4 ms
5,248 KB
testcase_42 AC 6 ms
5,248 KB
testcase_43 AC 11 ms
5,248 KB
testcase_44 AC 48 ms
5,248 KB
testcase_45 AC 4 ms
5,248 KB
testcase_46 AC 36 ms
5,248 KB
testcase_47 AC 1,827 ms
5,248 KB
testcase_48 AC 1,759 ms
5,248 KB
testcase_49 AC 2,004 ms
5,248 KB
testcase_50 AC 1,754 ms
5,248 KB
testcase_51 AC 1,489 ms
5,248 KB
testcase_52 AC 976 ms
5,248 KB
testcase_53 AC 1,562 ms
5,248 KB
testcase_54 AC 30 ms
5,248 KB
testcase_55 AC 1 ms
5,248 KB
testcase_56 AC 2 ms
5,248 KB
testcase_57 AC 1 ms
8,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>

using namespace std;
typedef long long LL;

LL getMedian(vector<LL>& a, LL begin, LL end){
    sort(a.begin() + begin, a.begin() + end);
    return *(a.begin() + (begin + end - 1) / 2);
}

void build(vector<LL>& a, LL n, LL k, vector<LL>& left, vector<LL>& left_cum){
    for(LL i = 0; (i+1)*k <= n; ++i){
        left[i] = getMedian(a, i*k, (i+1)*k);
    }
    LL cur = 0;
    for(LL i = 0; i < left.size(); ++i){
        cur += left[i];
        left_cum[i+1] = max(cur, left_cum[i]);
    }
}

LL solve(vector<LL> a, LL n, LL k){
    vector<LL> b = a;
    reverse(b.begin(), b.end());
    vector<LL> left(n / k);
    vector<LL> right(n / k);
    vector<LL> left_cum(n / k + 1);
    vector<LL> right_cum(n / k + 1);
    build(a, n, k, left, left_cum);
    build(b, n, k, right, right_cum);
    LL ans = 0;
    for(LL i = 0; i < left_cum.size(); ++i){
        ans = max(ans, left_cum[i] + right_cum[right_cum.size()-1-i]);
    }
    /*
    cerr << "k=" << k << endl;
    for(LL i = 0; i < left_cum.size(); ++i){
        cerr << "left " << left_cum[i] << endl;
    }
    for(LL i = 0; i < left_cum.size(); ++i){
        cerr << "right " << right_cum[i] << endl;
    }
    cerr << "best=" << ans * k << endl;
    */
    return ans * k;
}


int main(){
    LL N;
    cin >> N;
    vector<LL> a(N);
    for(LL i = 0; i < N; ++i){
        cin >> a[i];
    }
    LL ans = 0;
    for(LL k = 1; k <= N; ++k){
        ans = max(ans, solve(a, N, k));
    }
    cout << ans << endl;
}

0