結果

問題 No.2712 Play more!
ユーザー titiatitia
提出日時 2024-04-30 03:18:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 473 ms / 2,000 ms
コード長 782 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 77,400 KB
最終ジャッジ日時 2024-04-30 03:19:02
合計ジャッジ時間 6,916 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 37 ms
52,096 KB
testcase_02 AC 37 ms
52,352 KB
testcase_03 AC 38 ms
52,480 KB
testcase_04 AC 36 ms
52,352 KB
testcase_05 AC 37 ms
52,224 KB
testcase_06 AC 41 ms
52,224 KB
testcase_07 AC 258 ms
75,648 KB
testcase_08 AC 218 ms
77,056 KB
testcase_09 AC 252 ms
75,136 KB
testcase_10 AC 37 ms
52,064 KB
testcase_11 AC 132 ms
76,584 KB
testcase_12 AC 297 ms
77,264 KB
testcase_13 AC 145 ms
76,372 KB
testcase_14 AC 222 ms
76,824 KB
testcase_15 AC 473 ms
77,400 KB
testcase_16 AC 85 ms
73,088 KB
testcase_17 AC 66 ms
68,992 KB
testcase_18 AC 103 ms
76,672 KB
testcase_19 AC 78 ms
73,472 KB
testcase_20 AC 194 ms
76,800 KB
testcase_21 AC 101 ms
73,856 KB
testcase_22 AC 256 ms
76,892 KB
testcase_23 AC 71 ms
69,760 KB
testcase_24 AC 117 ms
76,436 KB
testcase_25 AC 66 ms
68,608 KB
testcase_26 AC 111 ms
76,332 KB
testcase_27 AC 93 ms
74,496 KB
testcase_28 AC 147 ms
68,096 KB
testcase_29 AC 107 ms
76,868 KB
testcase_30 AC 346 ms
77,168 KB
testcase_31 AC 311 ms
77,268 KB
testcase_32 AC 359 ms
77,312 KB
testcase_33 AC 57 ms
59,648 KB
testcase_34 AC 36 ms
52,352 KB
testcase_35 AC 37 ms
52,224 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):
        if USE[i]==0:
            continue
        for to,c in E[i]:
            if USE[to]==0:
                continue
            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