結果

問題 No.844 split game
ユーザー lowrlowr
提出日時 2019-08-16 19:26:48
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 920 bytes
コンパイル時間 2,335 ms
コンパイル使用メモリ 208,384 KB
最終ジャッジ日時 2025-01-07 12:06:44
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
6,820 KB
testcase_01 AC 43 ms
8,652 KB
testcase_02 AC 106 ms
6,820 KB
testcase_03 AC 77 ms
8,404 KB
testcase_04 AC 40 ms
6,816 KB
testcase_05 AC 121 ms
8,908 KB
testcase_06 AC 38 ms
6,816 KB
testcase_07 AC 34 ms
7,764 KB
testcase_08 AC 20 ms
6,820 KB
testcase_09 AC 95 ms
6,820 KB
testcase_10 AC 129 ms
8,140 KB
testcase_11 AC 124 ms
9,908 KB
testcase_12 AC 90 ms
6,816 KB
testcase_13 AC 57 ms
6,820 KB
testcase_14 AC 60 ms
7,248 KB
testcase_15 AC 136 ms
10,060 KB
testcase_16 AC 135 ms
10,144 KB
testcase_17 AC 134 ms
10,064 KB
testcase_18 AC 136 ms
10,064 KB
testcase_19 AC 134 ms
10,064 KB
testcase_20 AC 133 ms
10,196 KB
testcase_21 AC 134 ms
10,188 KB
testcase_22 AC 134 ms
10,324 KB
testcase_23 AC 6 ms
6,820 KB
testcase_24 AC 10 ms
6,820 KB
testcase_25 AC 7 ms
6,816 KB
testcase_26 AC 4 ms
6,820 KB
testcase_27 AC 9 ms
6,824 KB
testcase_28 AC 4 ms
6,820 KB
testcase_29 AC 9 ms
6,816 KB
testcase_30 AC 11 ms
6,816 KB
testcase_31 AC 9 ms
6,816 KB
testcase_32 AC 3 ms
6,816 KB
testcase_33 AC 12 ms
6,820 KB
testcase_34 AC 8 ms
6,824 KB
testcase_35 AC 15 ms
6,820 KB
testcase_36 AC 10 ms
6,820 KB
testcase_37 AC 22 ms
6,816 KB
testcase_38 AC 38 ms
6,816 KB
testcase_39 AC 80 ms
6,820 KB
testcase_40 AC 26 ms
6,820 KB
testcase_41 AC 2 ms
6,820 KB
testcase_42 AC 2 ms
6,820 KB
testcase_43 AC 2 ms
6,816 KB
testcase_44 AC 2 ms
6,820 KB
testcase_45 AC 2 ms
6,816 KB
testcase_46 AC 2 ms
6,820 KB
testcase_47 AC 2 ms
6,816 KB
testcase_48 AC 2 ms
6,820 KB
testcase_49 AC 2 ms
6,820 KB
testcase_50 AC 2 ms
6,820 KB
testcase_51 AC 2 ms
6,820 KB
testcase_52 AC 2 ms
6,816 KB
testcase_53 AC 2 ms
6,816 KB
testcase_54 AC 2 ms
6,820 KB
testcase_55 AC 2 ms
6,820 KB
testcase_56 AC 2 ms
6,820 KB
testcase_57 AC 2 ms
6,824 KB
testcase_58 AC 1 ms
6,816 KB
testcase_59 AC 2 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using i64 = long long;

int main() {
  unsigned n, m;
  i64 a;
  std::cin >> n >> m >> a;
  std::vector<std::pair<std::pair<unsigned, unsigned>, i64>> v;
  for (unsigned i = 0; i < m; i++) {
    int l, r;
    i64 p;
    std::cin >> l >> r >> p;
    v.emplace_back(std::piecewise_construct, std::make_tuple(r, l), std::make_tuple(p));
  }
  std::sort(v.begin(), v.end());

  std::vector<std::vector<i64>> dp(n + 1, std::vector<i64>(2));
  for (unsigned i = 1, j = 0; i <= n; i++) {
    dp[i][0] = std::max(dp[i - 1][0], dp[i - 1][1]);
    dp[i][1] = dp[1][0] - a;
    while (j < m && v[j].first.first == i) {
      dp[i][1] = std::max({
            dp[i][1],
            dp[v[j].first.second - 1][0] + v[j].second - a * 2,
            dp[v[j].first.second - 1][1] + v[j].second - a
          });
      j++;
    }
  }

  std::cout << std::max(dp[n][0], dp[n][1] + a) << std::endl;

  return 0;
}

0