結果

問題 No.974 最後の日までに
ユーザー 沙耶花沙耶花
提出日時 2019-12-11 14:08:31
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,975 ms / 2,000 ms
コード長 2,833 bytes
コンパイル時間 2,345 ms
コンパイル使用メモリ 215,740 KB
実行使用メモリ 33,436 KB
最終ジャッジ日時 2024-06-25 16:56:41
合計ジャッジ時間 73,809 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,874 ms
30,648 KB
testcase_01 AC 1,902 ms
33,436 KB
testcase_02 AC 1,953 ms
32,476 KB
testcase_03 AC 1,896 ms
30,264 KB
testcase_04 AC 1,940 ms
30,772 KB
testcase_05 AC 1,902 ms
31,076 KB
testcase_06 AC 1,920 ms
29,576 KB
testcase_07 AC 1,923 ms
31,584 KB
testcase_08 AC 1,905 ms
32,232 KB
testcase_09 AC 1,949 ms
30,904 KB
testcase_10 AC 1,913 ms
31,012 KB
testcase_11 AC 1,919 ms
30,884 KB
testcase_12 AC 1,915 ms
31,160 KB
testcase_13 AC 1,937 ms
30,548 KB
testcase_14 AC 1,903 ms
32,472 KB
testcase_15 AC 1,921 ms
30,496 KB
testcase_16 AC 1,904 ms
32,176 KB
testcase_17 AC 1,914 ms
32,692 KB
testcase_18 AC 1,896 ms
32,176 KB
testcase_19 AC 1,924 ms
32,352 KB
testcase_20 AC 1,915 ms
32,604 KB
testcase_21 AC 1,929 ms
31,576 KB
testcase_22 AC 1,928 ms
31,692 KB
testcase_23 AC 1,917 ms
31,448 KB
testcase_24 AC 1,919 ms
29,960 KB
testcase_25 AC 2 ms
6,944 KB
testcase_26 AC 2 ms
6,944 KB
testcase_27 AC 1,482 ms
20,740 KB
testcase_28 AC 1,959 ms
30,300 KB
testcase_29 AC 2 ms
6,944 KB
testcase_30 AC 1,947 ms
31,932 KB
testcase_31 AC 2 ms
6,944 KB
testcase_32 AC 2 ms
6,944 KB
testcase_33 AC 999 ms
17,628 KB
testcase_34 AC 1,975 ms
32,252 KB
testcase_35 AC 2 ms
6,940 KB
testcase_36 AC 2 ms
6,940 KB
testcase_37 AC 1,949 ms
30,276 KB
testcase_38 AC 2 ms
6,944 KB
testcase_39 AC 2 ms
6,940 KB
testcase_40 AC 1,438 ms
21,428 KB
testcase_41 AC 1,906 ms
30,376 KB
testcase_42 AC 1,953 ms
30,300 KB
testcase_43 AC 1,965 ms
32,748 KB
testcase_44 AC 1,499 ms
20,708 KB
testcase_45 AC 978 ms
18,728 KB
testcase_46 AC 2 ms
6,940 KB
testcase_47 AC 2 ms
6,944 KB
testcase_48 AC 2 ms
6,940 KB
testcase_49 AC 2 ms
6,940 KB
testcase_50 AC 1 ms
6,940 KB
testcase_51 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"

using namespace std;

using i64 = long long;


signed main(){
    int n;
    cin >> n;
    vector<i64> a(n), b(n), c(n);
    for(int i = 0; i < n; ++i)
        cin >> a[i] >> b[i] >> c[i];

    array<int, 2> m{n / 2, (n + 1) / 2};


    // v[k][flag] = (money, val)
    vector<vector<pair<i64,i64>>> v(2);
    vector<vector<pair<i64,i64>>> special(2);

    for(int k = 0; k < 2; ++k){
        for(int i = 0; i < (1 << m[k]); ++i){
            i64 money = 0;
            i64 val = 0;
            bool flag = false;
            bool ignore = false;
            for(int j = 0; j < m[k]; ++j){
                if((i >> j) & 1){
                    if(flag){
                        ignore = true;
                        break;
                    }
                    flag = true;
                }
                else{
                    if(flag){
                        val += b[j + m[0] * k];
                        money -= c[j + m[0] * k];
                    }
                    else{
                        money += a[j + m[0] * k];
                    }
                    flag = false;
                }
            }
            if(!ignore){
                v[k].emplace_back(money, val);
                if(!k && flag)
                    special[k].emplace_back(money, val);
                if(k && !(i & 1))
                    special[k].emplace_back(money - a[m[0]] - c[m[0]], val + b[m[0]]);
            }
        }
    }

    sort(v[1].begin(),v[1].end());
	sort(special[1].begin(),special[1].end());
	
	long long last = 0;
	for(auto it = v[1].rbegin();it!=v[1].rend();it++){
		last = max(last,(*it).second);
		(*it).second = last;
	}
	
	last=0;
	for(auto it = special[1].rbegin();it!=special[1].rend();it++){
		last = max(last,(*it).second);
		(*it).second = last;
	}

	pair<long long,long long> P = make_pair(0,-100000000000000000);
	
    i64 ans = 0;
    for(int i = 0; i < v[0].size(); ++i){
		P.first = -v[0][i].first;
        auto it = lower_bound(v[1].begin(), v[1].end(), P);
        if(it == v[1].end()){
            continue;
        }
        int idx = distance(v[1].begin(), it);
        ans = max(ans, v[0][i].second + v[1][idx].second);
    }

     for(int i = 0; i < special[0].size(); ++i){
		P.first = -special[0][i].first;
        auto it = lower_bound(special[1].begin(), special[1].end(), P);
        if(it == special[1].end()){
            continue;
        }
        int idx = distance(special[1].begin(), it);
        ans = max(ans, special[0][i].second + special[1][idx].second);
    }

    /*
    for(int i = 0; i < 2; ++i){
        for(auto &x : v_keys[i])
            cout << x << " ";
        cout << endl;
        for(auto &x : v_vals[i])
            cout << x << " ";
        cout << endl;
        cout << endl;
    }
     */

    cout << ans << endl;
}
0