結果

問題 No.844 split game
ユーザー ttrttr
提出日時 2020-02-19 22:52:21
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 769 ms / 2,000 ms
コード長 719 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 35,032 KB
最終ジャッジ日時 2024-10-08 18:21:48
合計ジャッジ時間 18,696 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 304 ms
20,380 KB
testcase_01 AC 294 ms
21,120 KB
testcase_02 AC 607 ms
30,832 KB
testcase_03 AC 481 ms
26,852 KB
testcase_04 AC 246 ms
18,568 KB
testcase_05 AC 674 ms
31,828 KB
testcase_06 AC 222 ms
17,844 KB
testcase_07 AC 221 ms
18,304 KB
testcase_08 AC 126 ms
14,464 KB
testcase_09 AC 479 ms
26,640 KB
testcase_10 AC 704 ms
32,820 KB
testcase_11 AC 706 ms
33,024 KB
testcase_12 AC 482 ms
26,400 KB
testcase_13 AC 290 ms
20,084 KB
testcase_14 AC 317 ms
21,356 KB
testcase_15 AC 748 ms
34,908 KB
testcase_16 AC 768 ms
35,032 KB
testcase_17 AC 749 ms
34,844 KB
testcase_18 AC 737 ms
34,900 KB
testcase_19 AC 745 ms
34,952 KB
testcase_20 AC 731 ms
34,976 KB
testcase_21 AC 745 ms
34,780 KB
testcase_22 AC 769 ms
34,772 KB
testcase_23 AC 52 ms
11,648 KB
testcase_24 AC 81 ms
12,544 KB
testcase_25 AC 57 ms
11,648 KB
testcase_26 AC 44 ms
11,264 KB
testcase_27 AC 68 ms
12,160 KB
testcase_28 AC 41 ms
11,392 KB
testcase_29 AC 73 ms
12,160 KB
testcase_30 AC 80 ms
12,800 KB
testcase_31 AC 71 ms
12,160 KB
testcase_32 AC 41 ms
11,008 KB
testcase_33 AC 89 ms
12,288 KB
testcase_34 AC 64 ms
11,776 KB
testcase_35 AC 104 ms
12,672 KB
testcase_36 AC 73 ms
12,032 KB
testcase_37 AC 140 ms
13,824 KB
testcase_38 AC 256 ms
18,048 KB
testcase_39 AC 497 ms
25,920 KB
testcase_40 AC 201 ms
16,812 KB
testcase_41 AC 31 ms
10,880 KB
testcase_42 AC 29 ms
10,624 KB
testcase_43 AC 29 ms
10,624 KB
testcase_44 AC 28 ms
10,624 KB
testcase_45 AC 29 ms
10,880 KB
testcase_46 AC 29 ms
10,880 KB
testcase_47 AC 29 ms
10,880 KB
testcase_48 AC 30 ms
10,880 KB
testcase_49 AC 29 ms
10,752 KB
testcase_50 AC 30 ms
10,624 KB
testcase_51 AC 31 ms
10,624 KB
testcase_52 AC 29 ms
10,624 KB
testcase_53 AC 29 ms
10,624 KB
testcase_54 AC 29 ms
10,752 KB
testcase_55 AC 29 ms
10,880 KB
testcase_56 AC 29 ms
10,752 KB
testcase_57 AC 30 ms
10,624 KB
testcase_58 AC 29 ms
10,624 KB
testcase_59 AC 29 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,A = map(int, input().split())
L = [[int(l) for l in input().split()] for _ in range(M)]

from operator import itemgetter

L.sort(key=itemgetter(1))
dp0 = [0]*(N+1)
dp1 = [0]*(N+1)
j = 0
for i in range(1, N+1):
    dp0[i] = max(dp0[i-1], dp1[i-1])
    dp1[i] = dp0[i]-A
    while j < M and L[j][1] == i:
        if L[j][0] == 1 and L[j][1] == N:
            dp1[i] = max(dp1[i], L[j][2])
        elif L[j][0] == 1:
            dp1[i] = max(dp1[i], L[j][2]-A)
        elif L[j][1] == N:
            dp1[i] = max(dp1[i], dp1[L[j][0]-1]+L[j][2], dp0[L[j][0]-1]+L[j][2]-A)
        else:
            dp1[i] = max(dp1[i], dp1[L[j][0]-1]+L[j][2]-A, dp0[L[j][0]-1]+L[j][2]-2*A)
        j += 1

print(max(max(dp0), max(dp1)))
0