結果

問題 No.844 split game
ユーザー sinsincoscossinsincoscos
提出日時 2019-03-13 22:42:45
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 657 bytes
コンパイル時間 830 ms
コンパイル使用メモリ 73,064 KB
実行使用メモリ 9,088 KB
最終ジャッジ日時 2024-06-24 15:04:41
合計ジャッジ時間 4,891 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 113 ms
8,320 KB
testcase_03 WA -
testcase_04 AC 35 ms
6,940 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 11 ms
6,940 KB
testcase_34 AC 8 ms
6,940 KB
testcase_35 AC 14 ms
6,940 KB
testcase_36 AC 10 ms
6,944 KB
testcase_37 AC 20 ms
6,944 KB
testcase_38 AC 35 ms
6,944 KB
testcase_39 AC 69 ms
8,064 KB
testcase_40 AC 23 ms
6,940 KB
testcase_41 WA -
testcase_42 AC 4 ms
6,944 KB
testcase_43 AC 3 ms
6,940 KB
testcase_44 AC 4 ms
6,944 KB
testcase_45 WA -
testcase_46 AC 3 ms
6,940 KB
testcase_47 WA -
testcase_48 AC 3 ms
6,944 KB
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 AC 4 ms
6,940 KB
testcase_54 WA -
testcase_55 AC 3 ms
6,944 KB
testcase_56 AC 5 ms
6,944 KB
testcase_57 AC 4 ms
6,940 KB
testcase_58 AC 3 ms
6,940 KB
testcase_59 AC 3 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <cassert>
using namespace std;
typedef long long ll;
typedef pair<int,ll> P;
int N,M;
ll A,dp[100010] = {};
vector<vector<P>> v(100010);

int main(){
    cin >> N >> M >> A;
    assert(N<=100000 && M<=100000);
    int l,r;
    ll p;
    for(int i=0;i<M;i++){
        cin >> l >> r >> p;
        assert(l<=r);
        v[r].push_back(P(l,p));
    }
    ll ma = 0;
    for(int i=1;i<=N;i++){
        if(v[i].size()==0) continue;
        dp[i] = ma-A;
        for(auto x:v[i]){
            dp[i] = max(dp[i],dp[x.first-1]+x.second-(i==N? 0:A));
        }
        ma = max(ma,dp[i]);
    }
    cout << ma << endl;
}
0