結果

問題 No.844 split game
ユーザー flippergoflippergo
提出日時 2024-10-10 14:15:29
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 609 bytes
コンパイル時間 325 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 88,888 KB
最終ジャッジ日時 2024-10-10 14:15:39
合計ジャッジ時間 8,706 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
80,800 KB
testcase_01 AC 140 ms
84,620 KB
testcase_02 AC 164 ms
83,456 KB
testcase_03 AC 145 ms
85,120 KB
testcase_04 AC 108 ms
80,256 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 176 ms
88,116 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 174 ms
88,436 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 74 ms
73,600 KB
testcase_27 WA -
testcase_28 AC 62 ms
68,096 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 108 ms
78,688 KB
testcase_39 AC 149 ms
81,280 KB
testcase_40 AC 99 ms
80,512 KB
testcase_41 AC 37 ms
52,096 KB
testcase_42 AC 37 ms
52,096 KB
testcase_43 AC 36 ms
52,096 KB
testcase_44 AC 35 ms
52,352 KB
testcase_45 AC 35 ms
51,840 KB
testcase_46 AC 34 ms
52,224 KB
testcase_47 AC 35 ms
52,224 KB
testcase_48 AC 36 ms
52,480 KB
testcase_49 AC 36 ms
51,968 KB
testcase_50 AC 38 ms
52,096 KB
testcase_51 AC 37 ms
52,352 KB
testcase_52 AC 36 ms
52,096 KB
testcase_53 AC 36 ms
52,352 KB
testcase_54 AC 42 ms
52,224 KB
testcase_55 AC 36 ms
52,608 KB
testcase_56 AC 39 ms
52,480 KB
testcase_57 WA -
testcase_58 AC 37 ms
52,096 KB
testcase_59 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,a = map(int,input().split())
D = [[] for _ in range(N+1)]
for _ in range(M):
    l,r,p = map(int,input().split())
    D[r].append((l,p))
dp = [0]*(N+1)
for i in range(1,N+1):
    dp[i] = dp[i-1]
    if len(D[i])>0:
        for l,p in D[i]:
            dp[i] = max(dp[i],dp[l-1]+p)
L = [0]*(N+1)
d = dp[N]
for i in range(N,0,-1):
    if d==dp[i]>dp[i-1]:
        r = i
        for l0,p0 in D[i]:
            if dp[i]==dp[l0-1]+p0:
                l = l0
                p = p0
                break
        d -= p
        L[r] = 1
        L[l-1] = 1
L[0] = 0
L[N] = 0
ans = max(0,dp[N]-sum(L)*a)
print(ans)
0