結果

問題 No.844 split game
ユーザー t33ft33f
提出日時 2019-06-29 00:22:05
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 184 ms / 2,000 ms
コード長 809 bytes
コンパイル時間 755 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 14,848 KB
最終ジャッジ日時 2024-07-02 05:17:19
合計ジャッジ時間 5,645 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
7,424 KB
testcase_01 AC 65 ms
12,800 KB
testcase_02 AC 126 ms
8,576 KB
testcase_03 AC 102 ms
12,032 KB
testcase_04 AC 47 ms
7,296 KB
testcase_05 AC 153 ms
12,544 KB
testcase_06 AC 45 ms
7,424 KB
testcase_07 AC 49 ms
11,264 KB
testcase_08 AC 23 ms
6,144 KB
testcase_09 AC 93 ms
6,016 KB
testcase_10 AC 155 ms
11,136 KB
testcase_11 AC 160 ms
14,208 KB
testcase_12 AC 90 ms
5,760 KB
testcase_13 AC 56 ms
5,376 KB
testcase_14 AC 69 ms
10,240 KB
testcase_15 AC 178 ms
14,848 KB
testcase_16 AC 176 ms
14,848 KB
testcase_17 AC 184 ms
14,848 KB
testcase_18 AC 178 ms
14,848 KB
testcase_19 AC 179 ms
14,720 KB
testcase_20 AC 183 ms
14,848 KB
testcase_21 AC 180 ms
14,720 KB
testcase_22 AC 179 ms
14,720 KB
testcase_23 AC 6 ms
5,376 KB
testcase_24 AC 12 ms
5,376 KB
testcase_25 AC 7 ms
5,376 KB
testcase_26 AC 5 ms
5,376 KB
testcase_27 AC 9 ms
5,376 KB
testcase_28 AC 5 ms
5,376 KB
testcase_29 AC 11 ms
5,376 KB
testcase_30 AC 12 ms
5,376 KB
testcase_31 AC 10 ms
5,376 KB
testcase_32 AC 5 ms
5,376 KB
testcase_33 AC 11 ms
5,376 KB
testcase_34 AC 7 ms
5,376 KB
testcase_35 AC 13 ms
5,376 KB
testcase_36 AC 8 ms
5,376 KB
testcase_37 AC 18 ms
5,376 KB
testcase_38 AC 40 ms
5,376 KB
testcase_39 AC 88 ms
6,272 KB
testcase_40 AC 38 ms
8,832 KB
testcase_41 AC 2 ms
5,376 KB
testcase_42 AC 2 ms
5,376 KB
testcase_43 AC 2 ms
5,376 KB
testcase_44 AC 2 ms
5,376 KB
testcase_45 AC 2 ms
5,376 KB
testcase_46 AC 2 ms
5,376 KB
testcase_47 AC 2 ms
5,376 KB
testcase_48 AC 2 ms
5,376 KB
testcase_49 AC 2 ms
5,376 KB
testcase_50 AC 2 ms
5,376 KB
testcase_51 AC 2 ms
5,376 KB
testcase_52 AC 2 ms
5,376 KB
testcase_53 AC 2 ms
5,376 KB
testcase_54 AC 2 ms
5,376 KB
testcase_55 AC 2 ms
5,376 KB
testcase_56 AC 2 ms
5,376 KB
testcase_57 AC 2 ms
5,376 KB
testcase_58 AC 2 ms
5,376 KB
testcase_59 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <vector>
#include <map>
#include <iostream>
using namespace std;
int main() {
    int n, m, a; cin >> n >> m >> a;
    map<int, vector<pair<int, int> > > mp;
    for (int i = 0; i < m; i++) {
        int l, r, p; cin >> l >> r >> p;
        mp[r].push_back({l, p});
    }
    long long dp[n+1], acc[n+1];
    dp[0] = acc[0] = 0;
    for (int x = 1; x <= n; x++) {
        long long val = -(1LL<<60);
        int cost = x == n ? 0 : a;
        for (auto interval : mp[x]) {
            int l = interval.first, p = interval.second;
            val = max(val, acc[l-1] + p - cost - a);
            val = max(val, dp[l-1] + p - cost);
        }
        dp[x] = val;
        acc[x] = max(acc[x-1], dp[x]);
        // cerr << x << ' ' << dp[x] << ' ' << acc[x] << endl;
    }
    cout << acc[n] << endl;
}
0