結果

問題 No.844 split game
ユーザー titiatitia
提出日時 2019-06-28 22:11:43
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,059 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 103,168 KB
最終ジャッジ日時 2024-07-02 04:50:00
合計ジャッジ時間 9,343 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
80,948 KB
testcase_01 AC 151 ms
83,364 KB
testcase_02 AC 254 ms
87,588 KB
testcase_03 AC 195 ms
95,156 KB
testcase_04 AC 123 ms
81,024 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 272 ms
102,692 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 275 ms
102,492 KB
testcase_19 WA -
testcase_20 AC 276 ms
102,936 KB
testcase_21 AC 278 ms
102,912 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 62 ms
68,352 KB
testcase_27 WA -
testcase_28 AC 54 ms
64,256 KB
testcase_29 AC 80 ms
78,336 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 57 ms
65,792 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 80 ms
77,312 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 129 ms
80,000 KB
testcase_39 AC 222 ms
94,172 KB
testcase_40 AC 97 ms
79,052 KB
testcase_41 AC 40 ms
51,968 KB
testcase_42 AC 39 ms
52,608 KB
testcase_43 AC 40 ms
51,968 KB
testcase_44 AC 39 ms
51,840 KB
testcase_45 AC 39 ms
52,352 KB
testcase_46 AC 39 ms
51,968 KB
testcase_47 AC 40 ms
51,940 KB
testcase_48 AC 38 ms
52,480 KB
testcase_49 AC 39 ms
52,224 KB
testcase_50 AC 39 ms
52,096 KB
testcase_51 AC 38 ms
51,840 KB
testcase_52 AC 39 ms
52,352 KB
testcase_53 WA -
testcase_54 AC 39 ms
52,480 KB
testcase_55 AC 40 ms
51,968 KB
testcase_56 AC 39 ms
52,224 KB
testcase_57 AC 39 ms
52,096 KB
testcase_58 AC 39 ms
52,480 KB
testcase_59 AC 38 ms
52,736 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
    
L.sort(key=lambda x:x[1])

LLIST=[[] for i in range(N+2)]

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

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

for i in range(N+2):
    DP[i]=DP[i-1]
    
    for x,z in LLIST[i]:
        if i==x and USE[i]==1:
            DP[i]=DP[i]+z
            
        elif i==x and USE[i]==0:
            if DP[i]<DP[i]+z-A:
                DP[i]=DP[i]+z-A
                USE[i]=1
            
        elif i==N+1 and USE[x]==1:
            if DP[i]<DP[x]+z:
                DP[i]=DP[x]+z

        elif i==N+1 and USE[x]==0:
            if DP[i]<DP[x]+z-A:
                DP[i]=DP[x]+z-A

        elif USE[x]==1:
            if DP[i]<DP[x]+z-A:
                DP[i]=DP[x]+z-A
                USE[i]=1
                
        elif USE[x]==0:
            if DP[i]<DP[x]+z-2*A:
                DP[i]=DP[x]+z-2*A
                USE[i]=1


print(DP[-1])


        
0