結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,352 KB
testcase_01 AC 50 ms
51,968 KB
testcase_02 AC 41 ms
51,840 KB
testcase_03 AC 45 ms
51,968 KB
testcase_04 WA -
testcase_05 AC 43 ms
52,352 KB
testcase_06 AC 41 ms
52,096 KB
testcase_07 AC 233 ms
74,496 KB
testcase_08 AC 222 ms
77,312 KB
testcase_09 AC 233 ms
74,368 KB
testcase_10 WA -
testcase_11 AC 134 ms
76,416 KB
testcase_12 AC 314 ms
76,928 KB
testcase_13 AC 132 ms
76,544 KB
testcase_14 AC 193 ms
77,056 KB
testcase_15 AC 344 ms
77,056 KB
testcase_16 AC 95 ms
72,320 KB
testcase_17 AC 76 ms
68,224 KB
testcase_18 AC 102 ms
76,544 KB
testcase_19 AC 83 ms
71,808 KB
testcase_20 AC 162 ms
76,544 KB
testcase_21 AC 110 ms
73,088 KB
testcase_22 AC 268 ms
77,056 KB
testcase_23 AC 80 ms
68,608 KB
testcase_24 AC 123 ms
76,800 KB
testcase_25 AC 74 ms
68,480 KB
testcase_26 AC 113 ms
76,800 KB
testcase_27 AC 141 ms
77,184 KB
testcase_28 AC 127 ms
66,816 KB
testcase_29 AC 127 ms
76,800 KB
testcase_30 AC 342 ms
76,928 KB
testcase_31 AC 273 ms
77,440 KB
testcase_32 AC 329 ms
77,056 KB
testcase_33 AC 50 ms
59,136 KB
testcase_34 AC 40 ms
52,224 KB
testcase_35 AC 41 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):
        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