結果

問題 No.974 最後の日までに
ユーザー betrue12betrue12
提出日時 2020-01-17 23:56:43
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 172 ms / 2,000 ms
コード長 1,621 bytes
コンパイル時間 2,553 ms
コンパイル使用メモリ 211,852 KB
実行使用メモリ 15,824 KB
最終ジャッジ日時 2024-10-04 01:32:34
合計ジャッジ時間 9,406 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 155 ms
15,692 KB
testcase_01 AC 149 ms
15,692 KB
testcase_02 AC 148 ms
15,560 KB
testcase_03 AC 146 ms
15,568 KB
testcase_04 AC 146 ms
15,560 KB
testcase_05 AC 149 ms
15,504 KB
testcase_06 AC 148 ms
15,560 KB
testcase_07 AC 146 ms
15,692 KB
testcase_08 AC 145 ms
15,568 KB
testcase_09 AC 147 ms
15,692 KB
testcase_10 AC 146 ms
15,568 KB
testcase_11 AC 150 ms
15,824 KB
testcase_12 AC 151 ms
15,560 KB
testcase_13 AC 147 ms
15,564 KB
testcase_14 AC 148 ms
15,688 KB
testcase_15 AC 149 ms
15,564 KB
testcase_16 AC 148 ms
15,564 KB
testcase_17 AC 162 ms
15,568 KB
testcase_18 AC 166 ms
15,692 KB
testcase_19 AC 168 ms
15,692 KB
testcase_20 AC 165 ms
15,568 KB
testcase_21 AC 167 ms
15,564 KB
testcase_22 AC 167 ms
15,564 KB
testcase_23 AC 168 ms
15,692 KB
testcase_24 AC 166 ms
15,568 KB
testcase_25 AC 2 ms
5,248 KB
testcase_26 AC 2 ms
5,248 KB
testcase_27 AC 114 ms
10,440 KB
testcase_28 AC 155 ms
15,560 KB
testcase_29 AC 2 ms
5,248 KB
testcase_30 AC 172 ms
15,568 KB
testcase_31 AC 2 ms
5,248 KB
testcase_32 AC 2 ms
5,248 KB
testcase_33 AC 96 ms
9,532 KB
testcase_34 AC 158 ms
15,692 KB
testcase_35 AC 2 ms
5,248 KB
testcase_36 AC 2 ms
5,248 KB
testcase_37 AC 172 ms
15,696 KB
testcase_38 AC 2 ms
5,248 KB
testcase_39 AC 2 ms
5,248 KB
testcase_40 AC 106 ms
10,700 KB
testcase_41 AC 142 ms
15,820 KB
testcase_42 AC 167 ms
15,560 KB
testcase_43 AC 171 ms
15,696 KB
testcase_44 AC 128 ms
10,448 KB
testcase_45 AC 104 ms
9,680 KB
testcase_46 AC 2 ms
5,248 KB
testcase_47 AC 2 ms
5,248 KB
testcase_48 AC 2 ms
5,248 KB
testcase_49 AC 2 ms
5,248 KB
testcase_50 AC 2 ms
5,248 KB
testcase_51 AC 2 ms
5,248 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;
        for(int d=0; 2*d<=H; d++){
            vector<int> steps;
            for(int i=0; i<H-2*d; i++) steps.push_back(1);
            for(int i=0; i<d; i++) steps.push_back(2);
            do{
                int64_t money = 0, love = 0;
                int pt = offset;
                for(int s : steps){
                    if(s == 1){
                        money += A[pt];
                    }else{
                        money -= C[pt+1];
                        love += B[pt+1];
                    }
                    pt += s;
                }
                res.emplace_back(money, love);
            }while(next_permutation(steps.begin(), steps.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