結果

問題 No.844 split game
ユーザー H3PO4H3PO4
提出日時 2021-02-22 08:35:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 700 ms / 2,000 ms
コード長 435 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 36,096 KB
最終ジャッジ日時 2024-09-20 05:22:07
合計ジャッジ時間 16,954 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 267 ms
20,480 KB
testcase_01 AC 299 ms
25,472 KB
testcase_02 AC 517 ms
28,032 KB
testcase_03 AC 431 ms
28,416 KB
testcase_04 AC 220 ms
19,200 KB
testcase_05 AC 583 ms
32,256 KB
testcase_06 AC 207 ms
18,688 KB
testcase_07 AC 235 ms
22,272 KB
testcase_08 AC 122 ms
15,360 KB
testcase_09 AC 390 ms
22,272 KB
testcase_10 AC 607 ms
31,488 KB
testcase_11 AC 645 ms
34,304 KB
testcase_12 AC 403 ms
21,888 KB
testcase_13 AC 249 ms
18,048 KB
testcase_14 AC 310 ms
23,424 KB
testcase_15 AC 652 ms
35,968 KB
testcase_16 AC 698 ms
36,096 KB
testcase_17 AC 700 ms
35,968 KB
testcase_18 AC 658 ms
36,096 KB
testcase_19 AC 687 ms
36,096 KB
testcase_20 AC 664 ms
36,096 KB
testcase_21 AC 679 ms
35,968 KB
testcase_22 AC 697 ms
36,096 KB
testcase_23 AC 51 ms
11,520 KB
testcase_24 AC 86 ms
12,800 KB
testcase_25 AC 56 ms
11,392 KB
testcase_26 AC 45 ms
11,520 KB
testcase_27 AC 65 ms
11,776 KB
testcase_28 AC 45 ms
11,648 KB
testcase_29 AC 75 ms
12,672 KB
testcase_30 AC 81 ms
12,800 KB
testcase_31 AC 64 ms
12,032 KB
testcase_32 AC 41 ms
11,520 KB
testcase_33 AC 74 ms
11,904 KB
testcase_34 AC 55 ms
11,264 KB
testcase_35 AC 89 ms
12,160 KB
testcase_36 AC 62 ms
11,520 KB
testcase_37 AC 116 ms
12,928 KB
testcase_38 AC 197 ms
15,744 KB
testcase_39 AC 383 ms
20,864 KB
testcase_40 AC 188 ms
19,200 KB
testcase_41 AC 28 ms
10,752 KB
testcase_42 AC 29 ms
10,624 KB
testcase_43 AC 28 ms
10,752 KB
testcase_44 AC 28 ms
10,624 KB
testcase_45 AC 28 ms
10,752 KB
testcase_46 AC 27 ms
10,624 KB
testcase_47 AC 26 ms
10,624 KB
testcase_48 AC 27 ms
10,752 KB
testcase_49 AC 27 ms
10,624 KB
testcase_50 AC 26 ms
10,624 KB
testcase_51 AC 26 ms
10,752 KB
testcase_52 AC 28 ms
10,752 KB
testcase_53 AC 28 ms
10,752 KB
testcase_54 AC 27 ms
10,752 KB
testcase_55 AC 28 ms
10,624 KB
testcase_56 AC 29 ms
10,624 KB
testcase_57 AC 30 ms
10,624 KB
testcase_58 AC 29 ms
10,624 KB
testcase_59 AC 29 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M, A = map(int, input().split())
sections = [[] for _ in range(N)]
for _ in range(M):
    l, r, p = map(int, input().split())
    l -= 1
    sections[l].append((r, p))

dp = [-10 ** 9 - 5] * (N + 1)
dp[0] = 0
cur_max = 0
for i, s in enumerate(sections):
    dp[i] = max(dp[i], cur_max - A)
    cur = dp[i]
    for r, p in s:
        dp[r] = max(dp[r], cur + p - (A if r != N else 0))
    cur_max = max(cur_max, cur)

print(max(dp))
0