結果

問題 No.844 split game
ユーザー convexineqconvexineq
提出日時 2019-06-29 00:07:18
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,013 ms / 2,000 ms
コード長 460 bytes
コンパイル時間 93 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 47,500 KB
最終ジャッジ日時 2024-07-02 05:16:55
合計ジャッジ時間 21,368 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 385 ms
24,744 KB
testcase_01 AC 450 ms
32,512 KB
testcase_02 AC 760 ms
36,644 KB
testcase_03 AC 638 ms
36,284 KB
testcase_04 AC 315 ms
22,828 KB
testcase_05 AC 856 ms
42,068 KB
testcase_06 AC 282 ms
22,200 KB
testcase_07 AC 341 ms
27,964 KB
testcase_08 AC 167 ms
17,584 KB
testcase_09 AC 557 ms
28,704 KB
testcase_10 AC 871 ms
41,624 KB
testcase_11 AC 917 ms
44,920 KB
testcase_12 AC 529 ms
28,200 KB
testcase_13 AC 335 ms
22,100 KB
testcase_14 AC 433 ms
29,156 KB
testcase_15 AC 1,006 ms
47,440 KB
testcase_16 AC 998 ms
47,432 KB
testcase_17 AC 979 ms
47,432 KB
testcase_18 AC 973 ms
47,432 KB
testcase_19 AC 966 ms
47,304 KB
testcase_20 AC 970 ms
47,304 KB
testcase_21 AC 1,013 ms
47,308 KB
testcase_22 AC 977 ms
47,500 KB
testcase_23 AC 59 ms
12,160 KB
testcase_24 AC 97 ms
13,824 KB
testcase_25 AC 62 ms
11,904 KB
testcase_26 AC 51 ms
11,904 KB
testcase_27 AC 77 ms
12,544 KB
testcase_28 AC 53 ms
12,160 KB
testcase_29 AC 91 ms
13,696 KB
testcase_30 AC 97 ms
13,824 KB
testcase_31 AC 77 ms
12,800 KB
testcase_32 AC 51 ms
12,032 KB
testcase_33 AC 96 ms
12,288 KB
testcase_34 AC 67 ms
11,648 KB
testcase_35 AC 106 ms
12,800 KB
testcase_36 AC 78 ms
12,032 KB
testcase_37 AC 147 ms
13,824 KB
testcase_38 AC 297 ms
19,320 KB
testcase_39 AC 630 ms
28,700 KB
testcase_40 AC 287 ms
23,236 KB
testcase_41 AC 31 ms
10,624 KB
testcase_42 AC 30 ms
10,752 KB
testcase_43 AC 30 ms
10,624 KB
testcase_44 AC 30 ms
10,624 KB
testcase_45 AC 30 ms
10,496 KB
testcase_46 AC 30 ms
10,752 KB
testcase_47 AC 30 ms
10,752 KB
testcase_48 AC 31 ms
10,624 KB
testcase_49 AC 31 ms
10,624 KB
testcase_50 AC 31 ms
10,624 KB
testcase_51 AC 32 ms
10,624 KB
testcase_52 AC 31 ms
10,624 KB
testcase_53 AC 32 ms
10,752 KB
testcase_54 AC 31 ms
10,624 KB
testcase_55 AC 31 ms
10,752 KB
testcase_56 AC 30 ms
10,624 KB
testcase_57 AC 31 ms
10,624 KB
testcase_58 AC 32 ms
10,624 KB
testcase_59 AC 31 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
# Your code here!

n,m,a = [int(i) for i in input().split()]
lrp = [[int(i) for i in input().split()] for _ in range(m)] + [[1,i,0] for i in range(1,n+1)]


lrp.sort(key = lambda x: x[1])

inf = 1e18
dp = [-inf]*(n+1)
dp[0] = 0

c = 0
for l,r,p in lrp:
    l-=1
    r-=1
    c = max(dp[r],c)
    if r != n-1:
        dp[r+1] = max(dp[r+1], dp[l]+p-a,c-a)
    else:
        dp[r+1] = max(dp[r+1], dp[l]+p,c-a)
        
#print(dp)

print(max(dp))
0