結果

問題 No.974 最後の日までに
ユーザー RubikunRubikun
提出日時 2024-11-24 19:23:01
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 100 ms / 2,000 ms
コード長 1,848 bytes
コンパイル時間 2,244 ms
コンパイル使用メモリ 209,984 KB
実行使用メモリ 8,936 KB
最終ジャッジ日時 2024-11-24 19:23:10
合計ジャッジ時間 6,121 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
8,168 KB
testcase_01 AC 76 ms
8,292 KB
testcase_02 AC 70 ms
8,164 KB
testcase_03 AC 68 ms
8,420 KB
testcase_04 AC 70 ms
7,784 KB
testcase_05 AC 75 ms
7,784 KB
testcase_06 AC 75 ms
7,656 KB
testcase_07 AC 78 ms
7,656 KB
testcase_08 AC 67 ms
7,656 KB
testcase_09 AC 70 ms
7,400 KB
testcase_10 AC 70 ms
8,424 KB
testcase_11 AC 67 ms
8,300 KB
testcase_12 AC 66 ms
8,168 KB
testcase_13 AC 69 ms
7,908 KB
testcase_14 AC 70 ms
7,528 KB
testcase_15 AC 67 ms
7,788 KB
testcase_16 AC 65 ms
7,784 KB
testcase_17 AC 56 ms
8,292 KB
testcase_18 AC 56 ms
8,172 KB
testcase_19 AC 56 ms
8,424 KB
testcase_20 AC 57 ms
7,780 KB
testcase_21 AC 58 ms
8,168 KB
testcase_22 AC 57 ms
7,532 KB
testcase_23 AC 56 ms
8,300 KB
testcase_24 AC 67 ms
8,552 KB
testcase_25 AC 2 ms
6,816 KB
testcase_26 AC 2 ms
6,816 KB
testcase_27 AC 76 ms
6,816 KB
testcase_28 AC 85 ms
8,812 KB
testcase_29 AC 2 ms
6,820 KB
testcase_30 AC 76 ms
8,168 KB
testcase_31 AC 1 ms
6,820 KB
testcase_32 AC 2 ms
6,816 KB
testcase_33 AC 57 ms
6,816 KB
testcase_34 AC 100 ms
8,936 KB
testcase_35 AC 1 ms
6,820 KB
testcase_36 AC 2 ms
6,816 KB
testcase_37 AC 93 ms
8,428 KB
testcase_38 AC 2 ms
6,820 KB
testcase_39 AC 2 ms
6,820 KB
testcase_40 AC 40 ms
6,820 KB
testcase_41 AC 51 ms
7,784 KB
testcase_42 AC 90 ms
8,168 KB
testcase_43 AC 91 ms
8,292 KB
testcase_44 AC 76 ms
6,816 KB
testcase_45 AC 54 ms
6,816 KB
testcase_46 AC 2 ms
6,816 KB
testcase_47 AC 1 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,820 KB
testcase_51 AC 1 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return true; } return false; }
template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return true; } return false; }
#define vi vector<int>
#define vl vector<ll>
#define vii vector<pair<int,int>>
#define vll vector<pair<ll,ll>>
#define vvi vector<vector<int>>
#define vvl vector<vector<ll>>
#define vvii vector<vector<pair<int,int>>>
#define vvll vector<vector<pair<ll,ll>>>
#define vst vector<string>
#define pii pair<int,int>
#define pll pair<ll,ll>
#define pb push_back
#define all(x) (x).begin(),(x).end()
#define mkunique(x) sort(all(x));(x).erase(unique(all(x)),(x).end())
#define fi first
#define se second
#define mp make_pair
#define si(x) int(x.size())
const int mod=998244353,MAX=300005;
const ll INF=15LL<<58;

ll a[55],b[55],c[55];

ll N;

ll ans=0;

vector<pair<ll,ll>> S;

void DFS(int u,ll x,ll y,int tar,bool f){
    if(u>tar) return;
    if(u==tar){
        if(f==0) S.pb(mp(x,y));
        else{
            auto it=lower_bound(all(S),mp(-x,-INF));
            if(it!=S.end()){
                chmax(ans,y+(*it).se);
            }
        }
        return;
    }
    DFS(u+1,x+a[u],y,tar,f);
    DFS(u+2,x-c[u+1],y+b[u+1],tar,f);
}

int main(){
    
    std::ifstream in("text.txt");
    std::cin.rdbuf(in.rdbuf());
    cin.tie(0);
    ios::sync_with_stdio(false);
    
    cin>>N;
    for(int i=0;i<N;i++){
        cin>>a[i]>>b[i]>>c[i];
    }
    
    DFS(0,0,0,N/2,0);
    sort(all(S));
    for(int i=si(S)-2;i>=0;i--) chmax(S[i].se,S[i+1].se);
    DFS(N/2,0,0,N,1);
    
    S.clear();
    
    if(N>1){
        DFS(0,0,0,N/2-1,0);
        sort(all(S));
        for(int i=si(S)-2;i>=0;i--) chmax(S[i].se,S[i+1].se);
        DFS(N/2-1,0,0,N,1);
    }
    
    cout<<ans<<endl;
    
}


0