結果

問題 No.844 split game
ユーザー kk
提出日時 2021-01-25 22:35:50
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 41 ms / 2,000 ms
コード長 857 bytes
コンパイル時間 1,821 ms
コンパイル使用メモリ 204,152 KB
実行使用メモリ 9,344 KB
最終ジャッジ日時 2024-06-22 19:08:05
合計ジャッジ時間 4,256 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 18 ms
7,216 KB
testcase_01 AC 14 ms
7,888 KB
testcase_02 AC 32 ms
7,900 KB
testcase_03 AC 24 ms
8,200 KB
testcase_04 AC 13 ms
6,944 KB
testcase_05 AC 36 ms
8,832 KB
testcase_06 AC 12 ms
6,948 KB
testcase_07 AC 12 ms
7,436 KB
testcase_08 AC 8 ms
6,944 KB
testcase_09 AC 27 ms
7,276 KB
testcase_10 AC 38 ms
8,428 KB
testcase_11 AC 35 ms
9,240 KB
testcase_12 AC 26 ms
7,264 KB
testcase_13 AC 16 ms
6,940 KB
testcase_14 AC 18 ms
7,668 KB
testcase_15 AC 39 ms
9,312 KB
testcase_16 AC 40 ms
9,216 KB
testcase_17 AC 40 ms
9,284 KB
testcase_18 AC 41 ms
9,344 KB
testcase_19 AC 38 ms
9,316 KB
testcase_20 AC 39 ms
9,216 KB
testcase_21 AC 39 ms
9,276 KB
testcase_22 AC 38 ms
9,328 KB
testcase_23 AC 4 ms
6,940 KB
testcase_24 AC 5 ms
6,940 KB
testcase_25 AC 5 ms
7,176 KB
testcase_26 AC 3 ms
6,940 KB
testcase_27 AC 5 ms
6,940 KB
testcase_28 AC 3 ms
7,172 KB
testcase_29 AC 4 ms
6,940 KB
testcase_30 AC 5 ms
6,944 KB
testcase_31 AC 4 ms
6,944 KB
testcase_32 AC 3 ms
6,944 KB
testcase_33 AC 5 ms
6,940 KB
testcase_34 AC 3 ms
6,948 KB
testcase_35 AC 7 ms
6,944 KB
testcase_36 AC 5 ms
7,052 KB
testcase_37 AC 8 ms
6,940 KB
testcase_38 AC 13 ms
6,944 KB
testcase_39 AC 26 ms
7,468 KB
testcase_40 AC 10 ms
7,228 KB
testcase_41 AC 2 ms
6,940 KB
testcase_42 AC 3 ms
6,944 KB
testcase_43 AC 2 ms
6,940 KB
testcase_44 AC 3 ms
6,940 KB
testcase_45 AC 2 ms
6,940 KB
testcase_46 AC 2 ms
6,940 KB
testcase_47 AC 3 ms
6,940 KB
testcase_48 AC 3 ms
7,052 KB
testcase_49 AC 2 ms
6,940 KB
testcase_50 AC 3 ms
6,940 KB
testcase_51 AC 2 ms
7,204 KB
testcase_52 AC 3 ms
6,940 KB
testcase_53 AC 3 ms
6,940 KB
testcase_54 AC 3 ms
6,940 KB
testcase_55 AC 3 ms
6,944 KB
testcase_56 AC 2 ms
6,944 KB
testcase_57 AC 3 ms
6,944 KB
testcase_58 AC 2 ms
6,940 KB
testcase_59 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

#define REP(i,n) for(int i=0; i<(int)(n); i++)

const long long INF = 1LL<<60;
long long dp[100000+1][2];
vector<pair<int, int> > v[100000+1];

int main() {
  ios_base::sync_with_stdio(0);
  cin.tie(0);

  int n, m, a;
  cin >> n >> m >> a;

  for (int i = 0; i < m; i++) {
    int l, r, p;
    cin >> l >> r >> p;
    v[r].emplace_back(--l, p);
  }

  for (int i = 0; i <= n; i++)
    for (int j = 0; j < 2; j++)
      dp[i][j] = -INF;
  
  dp[0][0] = dp[0][1] = 0;

  for (int i = 1; i <= n; i++) {
    dp[i][0] = max(dp[i-1][0], dp[i-1][1]);
    for (auto &[l, p]: v[i]) {
      if (dp[l][1] != -INF)
        dp[i][1] = max(dp[i][1], dp[l][1] + p - (i == n ? 0 : a));
      dp[i][1] = max(dp[i][1], dp[l][0] + p - (i == n ? a : 2 * a));
    }
  }

  cout << max(dp[n][0], dp[n][1]) << endl;

  return 0;
}
0