結果

問題 No.974 最後の日までに
ユーザー betrue12betrue12
提出日時 2020-01-17 23:41:21
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 144 ms / 2,000 ms
コード長 1,685 bytes
コンパイル時間 2,082 ms
コンパイル使用メモリ 213,484 KB
実行使用メモリ 17,508 KB
最終ジャッジ日時 2024-10-04 01:32:07
合計ジャッジ時間 7,816 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
16,880 KB
testcase_01 AC 119 ms
16,600 KB
testcase_02 AC 118 ms
16,120 KB
testcase_03 AC 115 ms
15,836 KB
testcase_04 AC 117 ms
16,224 KB
testcase_05 AC 120 ms
16,332 KB
testcase_06 AC 120 ms
15,760 KB
testcase_07 AC 115 ms
16,160 KB
testcase_08 AC 116 ms
15,604 KB
testcase_09 AC 114 ms
15,996 KB
testcase_10 AC 122 ms
17,508 KB
testcase_11 AC 135 ms
16,320 KB
testcase_12 AC 123 ms
16,796 KB
testcase_13 AC 118 ms
16,000 KB
testcase_14 AC 119 ms
15,812 KB
testcase_15 AC 121 ms
15,700 KB
testcase_16 AC 115 ms
15,868 KB
testcase_17 AC 135 ms
16,028 KB
testcase_18 AC 137 ms
16,604 KB
testcase_19 AC 137 ms
15,572 KB
testcase_20 AC 127 ms
15,604 KB
testcase_21 AC 133 ms
16,280 KB
testcase_22 AC 135 ms
16,792 KB
testcase_23 AC 134 ms
15,760 KB
testcase_24 AC 137 ms
16,876 KB
testcase_25 AC 2 ms
6,816 KB
testcase_26 AC 2 ms
6,816 KB
testcase_27 AC 96 ms
10,576 KB
testcase_28 AC 131 ms
15,976 KB
testcase_29 AC 2 ms
6,820 KB
testcase_30 AC 140 ms
16,756 KB
testcase_31 AC 2 ms
6,820 KB
testcase_32 AC 1 ms
6,816 KB
testcase_33 AC 78 ms
10,452 KB
testcase_34 AC 127 ms
15,912 KB
testcase_35 AC 2 ms
6,816 KB
testcase_36 AC 1 ms
6,816 KB
testcase_37 AC 141 ms
15,772 KB
testcase_38 AC 2 ms
6,816 KB
testcase_39 AC 1 ms
6,816 KB
testcase_40 AC 87 ms
10,448 KB
testcase_41 AC 114 ms
16,444 KB
testcase_42 AC 139 ms
15,580 KB
testcase_43 AC 144 ms
17,028 KB
testcase_44 AC 110 ms
10,444 KB
testcase_45 AC 87 ms
10,068 KB
testcase_46 AC 1 ms
6,820 KB
testcase_47 AC 2 ms
6,816 KB
testcase_48 AC 2 ms
6,816 KB
testcase_49 AC 2 ms
6,816 KB
testcase_50 AC 2 ms
6,816 KB
testcase_51 AC 1 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main(){
    int W;
    cin >> W;
    vector<int64_t> A(W), B(W), C(W);
    for(int i=0; i<W; i++) cin >> A[i] >> B[i] >> C[i];

    auto calculate_cand = [&](int H, int offset){
        vector<pair<int64_t, int64_t>> res;
        res.emplace_back(0, 0);
        for(int d=0; 2*d<=H; d++){
            vector<int> order;
            for(int i=0; i<H-2*d; i++) order.push_back(0);
            for(int i=0; i<d; i++) order.push_back(1);
            do{
                int64_t money = 0, love = 0;
                int pt = offset;
                for(int t : order){
                    if(t){
                        money -= C[pt+1];
                        love += B[pt+1];
                        pt += 2;
                    }else{
                        money += A[pt];
                        pt += 1;
                    }
                }
                res.emplace_back(money, love);
            }while(next_permutation(order.begin(), order.end()));
        }
        sort(res.begin(), res.end());
        return res;
    };

    int H = W/2;
    int H2 = W-H;
    int64_t ans = 0;
    for(int k=0; k<2; k++){
        auto res1 = calculate_cand(H, 0);
        auto res2 = calculate_cand(H2, H);
        int sz = res2.size();
        int pt = sz-1;
        int64_t mx = -1e18;
        for(auto& p : res1){
            int64_t money = p.first, love = p.second;
            while(pt >= 0 && money + res2[pt].first >= 0){
                mx = max(mx, res2[pt].second);
                pt--;
            }
            ans = max(ans, love + mx);
        }
        H++;
        H2--;
    }
    cout << ans << endl;
    return 0;
}
0