結果

問題 No.919 You Are A Project Manager
ユーザー machymachy
提出日時 2019-10-25 23:48:34
言語 C++17(clang)
(17.0.6 + boost 1.87.0)
結果
AC  
実行時間 2,531 ms / 3,000 ms
コード長 2,280 bytes
コンパイル時間 985 ms
コンパイル使用メモリ 130,644 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-30 15:34:32
合計ジャッジ時間 34,956 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,134 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 24 ms
5,248 KB
testcase_05 AC 27 ms
5,248 KB
testcase_06 AC 4 ms
5,248 KB
testcase_07 AC 472 ms
5,248 KB
testcase_08 AC 39 ms
5,248 KB
testcase_09 AC 23 ms
5,248 KB
testcase_10 AC 62 ms
5,248 KB
testcase_11 AC 55 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 94 ms
5,248 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 12 ms
5,248 KB
testcase_16 AC 167 ms
5,248 KB
testcase_17 AC 349 ms
5,248 KB
testcase_18 AC 320 ms
5,248 KB
testcase_19 AC 1,125 ms
5,248 KB
testcase_20 AC 2,115 ms
5,248 KB
testcase_21 AC 1,106 ms
5,248 KB
testcase_22 AC 543 ms
5,248 KB
testcase_23 AC 517 ms
5,248 KB
testcase_24 AC 588 ms
5,248 KB
testcase_25 AC 540 ms
5,248 KB
testcase_26 AC 2,014 ms
5,248 KB
testcase_27 AC 1,595 ms
5,248 KB
testcase_28 AC 2,458 ms
5,248 KB
testcase_29 AC 346 ms
5,248 KB
testcase_30 AC 351 ms
5,248 KB
testcase_31 AC 340 ms
5,248 KB
testcase_32 AC 334 ms
5,248 KB
testcase_33 AC 623 ms
5,248 KB
testcase_34 AC 642 ms
5,248 KB
testcase_35 AC 2,469 ms
5,248 KB
testcase_36 AC 2,500 ms
5,248 KB
testcase_37 AC 2,488 ms
5,248 KB
testcase_38 AC 2,531 ms
5,248 KB
testcase_39 AC 2 ms
5,248 KB
testcase_40 AC 14 ms
5,248 KB
testcase_41 AC 3 ms
5,248 KB
testcase_42 AC 4 ms
5,248 KB
testcase_43 AC 6 ms
5,248 KB
testcase_44 AC 20 ms
5,248 KB
testcase_45 AC 3 ms
5,248 KB
testcase_46 AC 16 ms
5,248 KB
testcase_47 AC 540 ms
5,248 KB
testcase_48 AC 539 ms
5,248 KB
testcase_49 AC 579 ms
5,248 KB
testcase_50 AC 529 ms
5,248 KB
testcase_51 AC 465 ms
5,248 KB
testcase_52 AC 311 ms
5,248 KB
testcase_53 AC 461 ms
5,248 KB
testcase_54 AC 14 ms
5,248 KB
testcase_55 AC 1 ms
5,248 KB
testcase_56 AC 1 ms
5,248 KB
testcase_57 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

using namespace std;
typedef long long LL;

LL getPlaced(vector<LL>& a, LL begin, LL end, LL place){
    LL pivot = a[(begin+end)/2];
    LL large = 0;
    LL same = 0;
    for(LL i = begin; i < end-large; ){
        if(a[i] > pivot){
            swap(a[end-1-large], a[i]);
            ++large;
        }else if(a[i] == pivot){
            swap(a[begin+same], a[i]);
            ++same;
            ++i;
        }else{
            ++i;
        }
    }
    //cerr << "debug " << begin << ", " << end << ", " << place << ", " << same << ", " << large << endl;
    LL n = end - begin;
    if(place < n - same - large){
        return getPlaced(a, begin+same, end-large, place);
    }else if(place < n - large){
        return pivot;
    }else{
        return getPlaced(a, end-large, end, place - (n-large));
    }
}

LL getMedian(vector<LL>& a, LL begin, LL end){
    LL n = end - begin;
    return getPlaced(a, begin, end, (n-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