結果

問題 No.844 split game
ユーザー jelljell
提出日時 2019-06-29 10:33:36
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 1,078 bytes
コンパイル時間 1,779 ms
コンパイル使用メモリ 173,304 KB
実行使用メモリ 9,536 KB
最終ジャッジ日時 2024-07-02 05:24:44
合計ジャッジ時間 5,789 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
7,720 KB
testcase_01 AC 34 ms
8,088 KB
testcase_02 AC 92 ms
8,332 KB
testcase_03 AC 66 ms
8,532 KB
testcase_04 AC 35 ms
7,468 KB
testcase_05 AC 103 ms
8,872 KB
testcase_06 AC 33 ms
7,876 KB
testcase_07 AC 26 ms
7,712 KB
testcase_08 AC 18 ms
7,876 KB
testcase_09 AC 78 ms
7,724 KB
testcase_10 AC 112 ms
8,800 KB
testcase_11 AC 106 ms
9,280 KB
testcase_12 AC 77 ms
7,704 KB
testcase_13 AC 48 ms
7,316 KB
testcase_14 AC 46 ms
8,016 KB
testcase_15 AC 116 ms
9,320 KB
testcase_16 AC 116 ms
9,280 KB
testcase_17 AC 116 ms
9,408 KB
testcase_18 AC 116 ms
9,536 KB
testcase_19 AC 116 ms
9,296 KB
testcase_20 AC 118 ms
9,408 KB
testcase_21 AC 117 ms
9,292 KB
testcase_22 AC 118 ms
9,328 KB
testcase_23 AC 6 ms
6,940 KB
testcase_24 AC 10 ms
6,940 KB
testcase_25 AC 7 ms
6,944 KB
testcase_26 AC 4 ms
7,236 KB
testcase_27 AC 9 ms
6,940 KB
testcase_28 AC 5 ms
6,944 KB
testcase_29 AC 9 ms
6,944 KB
testcase_30 AC 10 ms
6,940 KB
testcase_31 AC 9 ms
6,940 KB
testcase_32 AC 4 ms
6,944 KB
testcase_33 AC 11 ms
6,944 KB
testcase_34 AC 8 ms
6,944 KB
testcase_35 AC 14 ms
6,980 KB
testcase_36 AC 9 ms
6,984 KB
testcase_37 AC 19 ms
6,984 KB
testcase_38 AC 33 ms
7,876 KB
testcase_39 AC 70 ms
8,120 KB
testcase_40 AC 22 ms
7,496 KB
testcase_41 AC 3 ms
6,944 KB
testcase_42 AC 3 ms
6,940 KB
testcase_43 AC 4 ms
6,940 KB
testcase_44 AC 3 ms
6,944 KB
testcase_45 AC 3 ms
6,940 KB
testcase_46 AC 4 ms
6,944 KB
testcase_47 AC 3 ms
6,940 KB
testcase_48 AC 3 ms
6,940 KB
testcase_49 AC 3 ms
6,944 KB
testcase_50 AC 4 ms
7,364 KB
testcase_51 AC 3 ms
6,944 KB
testcase_52 AC 3 ms
6,944 KB
testcase_53 AC 4 ms
6,944 KB
testcase_54 AC 3 ms
6,940 KB
testcase_55 AC 4 ms
6,944 KB
testcase_56 AC 3 ms
6,940 KB
testcase_57 AC 3 ms
6,944 KB
testcase_58 AC 3 ms
6,944 KB
testcase_59 AC 3 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using i64=int_fast64_t;
using pii=pair<int,int>;
template <class T> constexpr T inf=numeric_limits<T>::max() / (T)2;
template <class T> using minheap=priority_queue<T,vector<T>,greater<T>>;
#define fir first
#define sec second
#define mkp make_pair
#define mkt make_tuple
#define emb emplace_back
#define all(v) begin(v),end(v)
i64 binry(i64 ok, i64 ng, const function<bool(i64)> &f) {
    while(abs(ok-ng)>1) {
        i64 mid=(ok+ng)/2;
        (f(mid) ? ok : ng) = mid;
    }
    return ok;
}

int n,m,A;
vector<pii> segs[1<<17];
i64 dp[1<<17];

signed main() {
    cin>>n>>m>>A;
    for(int i=0; i<m; ++i) {
        int l,r,p; cin>>l>>r>>p;
        segs[r-1].emplace_back(l-1,p);
    }
    fill(dp,dp+n+2,-inf<i64>);
    dp[0]=0;
    for(i64 i=0,rui=0; i<n; ++i) {
        int dec=A;
        if(i==n-1) dec=0;
        dp[1+i]=max(dp[i+1],rui-dec);
        for(auto &s:segs[i]) {
            int l,p; tie(l,p)=s;
            dp[i+1]=max(dp[1+i],dp[l]+p-dec);
        }
        rui=max(rui,dp[i+1]);
    }
    cout<<dp[n]<<"\n";
}
0