結果

問題 No.844 split game
ユーザー titiatitia
提出日時 2019-06-28 22:37:33
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 761 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 104,320 KB
最終ジャッジ日時 2024-07-02 04:59:15
合計ジャッジ時間 8,565 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
80,512 KB
testcase_01 AC 117 ms
84,736 KB
testcase_02 AC 167 ms
90,752 KB
testcase_03 AC 164 ms
94,464 KB
testcase_04 AC 113 ms
81,280 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 209 ms
103,680 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 213 ms
103,808 KB
testcase_19 WA -
testcase_20 AC 205 ms
104,192 KB
testcase_21 AC 210 ms
104,320 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 70 ms
67,840 KB
testcase_27 WA -
testcase_28 AC 59 ms
64,256 KB
testcase_29 AC 87 ms
77,824 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 65 ms
66,048 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 83 ms
77,312 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 101 ms
79,744 KB
testcase_39 AC 130 ms
84,736 KB
testcase_40 AC 95 ms
78,464 KB
testcase_41 AC 41 ms
51,712 KB
testcase_42 AC 41 ms
51,968 KB
testcase_43 AC 41 ms
51,712 KB
testcase_44 AC 41 ms
51,840 KB
testcase_45 AC 42 ms
51,840 KB
testcase_46 AC 40 ms
52,096 KB
testcase_47 AC 42 ms
51,968 KB
testcase_48 AC 42 ms
51,712 KB
testcase_49 AC 41 ms
51,712 KB
testcase_50 AC 42 ms
51,968 KB
testcase_51 AC 41 ms
51,968 KB
testcase_52 AC 41 ms
51,968 KB
testcase_53 WA -
testcase_54 AC 41 ms
51,968 KB
testcase_55 AC 42 ms
51,968 KB
testcase_56 AC 42 ms
51,968 KB
testcase_57 AC 42 ms
52,096 KB
testcase_58 AC 41 ms
51,968 KB
testcase_59 AC 42 ms
52,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

for i in range(M):
    L[i][1]+=1
    
LLIST=[[] for i in range(N+2)]

for x,y,z in L:
    LLIST[x].append([y,z])

DP=[0]*(N+2)
USE=[0]*(N+2)
USE[1]=1
USE[N+1]=1

for i in range(N+2):
    if DP[i-1]>=DP[i]:
        DP[i]=DP[i-1]
        USE[i]=0
    USE[1]=1
    
    for y,z in LLIST[i]:
        if USE[i]==1 and y==N+1:
            DP[y]=max(DP[y],DP[i]+z)

        elif USE[i]==0 and y==N+1:
            DP[y]=max(DP[y],DP[i]+z-A)

        elif USE[i]==1:
            DP[y]=max(DP[y],DP[i]+z-A)
            USE[y]=1

        elif USE[i]==0:
            DP[y]=max(DP[y],DP[i]+z-2*A)
            USE[y]=1

    #print(DP)

print(DP[-1])
0