結果

問題 No.2712 Play more!
ユーザー titiatitia
提出日時 2024-04-30 03:17:51
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 687 bytes
コンパイル時間 277 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 77,524 KB
最終ジャッジ日時 2024-11-19 15:20:08
合計ジャッジ時間 6,339 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,956 KB
testcase_01 AC 38 ms
53,036 KB
testcase_02 AC 38 ms
53,632 KB
testcase_03 AC 38 ms
52,540 KB
testcase_04 WA -
testcase_05 AC 39 ms
52,544 KB
testcase_06 AC 39 ms
52,344 KB
testcase_07 AC 213 ms
75,232 KB
testcase_08 AC 206 ms
77,524 KB
testcase_09 AC 221 ms
74,936 KB
testcase_10 WA -
testcase_11 AC 117 ms
76,416 KB
testcase_12 AC 299 ms
77,184 KB
testcase_13 AC 116 ms
76,288 KB
testcase_14 AC 201 ms
77,360 KB
testcase_15 AC 334 ms
76,928 KB
testcase_16 AC 82 ms
72,320 KB
testcase_17 AC 65 ms
68,480 KB
testcase_18 AC 87 ms
76,160 KB
testcase_19 AC 71 ms
71,296 KB
testcase_20 AC 144 ms
76,536 KB
testcase_21 AC 95 ms
73,728 KB
testcase_22 AC 251 ms
76,672 KB
testcase_23 AC 70 ms
68,608 KB
testcase_24 AC 107 ms
76,544 KB
testcase_25 AC 64 ms
67,840 KB
testcase_26 AC 100 ms
76,544 KB
testcase_27 AC 127 ms
76,928 KB
testcase_28 AC 115 ms
67,456 KB
testcase_29 AC 111 ms
76,160 KB
testcase_30 AC 327 ms
77,056 KB
testcase_31 AC 258 ms
77,216 KB
testcase_32 AC 314 ms
76,928 KB
testcase_33 AC 46 ms
59,264 KB
testcase_34 AC 38 ms
51,840 KB
testcase_35 AC 38 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N,M=map(int,input().split())
A=list(map(int,input().split()))

E=[[] for i in range(N)]
E_INV=[[] for i in range(N)]

for i in range(M):
    a,b,c=map(int,input().split())
    a-=1
    b-=1
    E[a].append((b,c))
    E_INV[b].append(a)

USE=[0]*N
USE[N-1]=1
Q=[N-1]

while Q:
    x=Q.pop()
    for to in E_INV[x]:
        if USE[to]==0:
            USE[to]=1
            Q.append(to)

DP=[-1<<60]*N
DP[0]=A[0]

for tests in range(N+10):
    flag=0
    for i in range(N):
        for to,c in E[i]:
            if DP[to]<DP[i]+A[to]-c:
                DP[to]=DP[i]+A[to]-c
                flag=1

if flag==1:
    print("inf")
else:
    print(DP[-1])
0