結果

問題 No.844 split game
ユーザー ああいいああいい
提出日時 2022-01-01 23:14:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 661 ms / 2,000 ms
コード長 389 bytes
コンパイル時間 88 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 36,224 KB
最終ジャッジ日時 2024-10-10 17:07:32
合計ジャッジ時間 17,734 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 269 ms
20,608 KB
testcase_01 AC 263 ms
25,728 KB
testcase_02 AC 561 ms
27,904 KB
testcase_03 AC 433 ms
28,544 KB
testcase_04 AC 221 ms
19,328 KB
testcase_05 AC 584 ms
32,512 KB
testcase_06 AC 194 ms
18,816 KB
testcase_07 AC 199 ms
22,400 KB
testcase_08 AC 114 ms
15,488 KB
testcase_09 AC 428 ms
22,400 KB
testcase_10 AC 612 ms
31,744 KB
testcase_11 AC 601 ms
34,432 KB
testcase_12 AC 402 ms
22,144 KB
testcase_13 AC 259 ms
18,176 KB
testcase_14 AC 292 ms
23,552 KB
testcase_15 AC 656 ms
36,096 KB
testcase_16 AC 658 ms
36,096 KB
testcase_17 AC 660 ms
36,096 KB
testcase_18 AC 655 ms
36,096 KB
testcase_19 AC 661 ms
36,224 KB
testcase_20 AC 654 ms
36,096 KB
testcase_21 AC 655 ms
36,224 KB
testcase_22 AC 654 ms
36,224 KB
testcase_23 AC 49 ms
11,776 KB
testcase_24 AC 76 ms
12,928 KB
testcase_25 AC 55 ms
11,520 KB
testcase_26 AC 43 ms
11,648 KB
testcase_27 AC 65 ms
11,776 KB
testcase_28 AC 40 ms
11,648 KB
testcase_29 AC 68 ms
12,800 KB
testcase_30 AC 74 ms
12,928 KB
testcase_31 AC 66 ms
12,032 KB
testcase_32 AC 40 ms
11,520 KB
testcase_33 AC 81 ms
12,032 KB
testcase_34 AC 60 ms
11,392 KB
testcase_35 AC 93 ms
12,288 KB
testcase_36 AC 67 ms
11,648 KB
testcase_37 AC 124 ms
13,056 KB
testcase_38 AC 225 ms
15,872 KB
testcase_39 AC 443 ms
20,992 KB
testcase_40 AC 176 ms
19,200 KB
testcase_41 AC 30 ms
10,752 KB
testcase_42 AC 30 ms
10,752 KB
testcase_43 AC 30 ms
10,752 KB
testcase_44 AC 30 ms
10,752 KB
testcase_45 AC 31 ms
10,752 KB
testcase_46 AC 30 ms
10,752 KB
testcase_47 AC 30 ms
10,752 KB
testcase_48 AC 30 ms
10,752 KB
testcase_49 AC 30 ms
10,880 KB
testcase_50 AC 30 ms
10,880 KB
testcase_51 AC 30 ms
10,752 KB
testcase_52 AC 30 ms
10,880 KB
testcase_53 AC 30 ms
10,752 KB
testcase_54 AC 29 ms
10,880 KB
testcase_55 AC 30 ms
10,880 KB
testcase_56 AC 30 ms
10,880 KB
testcase_57 AC 30 ms
10,880 KB
testcase_58 AC 30 ms
10,880 KB
testcase_59 AC 30 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,A = map(int,input().split())

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

dp = [0] * (N + 1)
_max = 0
index = 0
for i in range(1,N + 1):
    dp[i] = _max - A
    for l,p in G[i]:
        dp[i] = max(dp[i],dp[l-1] + p - A)
    if dp[i] > _max:
        _max = dp[i]
        index = i
dp[N] += A
print(max(dp))
    
    
0