結果

問題 No.2712 Play more!
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-04-05 14:48:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 521 ms / 2,000 ms
コード長 562 bytes
コンパイル時間 323 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 79,264 KB
最終ジャッジ日時 2024-10-01 01:07:55
合計ジャッジ時間 6,806 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,312 KB
testcase_01 AC 39 ms
53,004 KB
testcase_02 AC 38 ms
52,344 KB
testcase_03 AC 36 ms
53,268 KB
testcase_04 AC 35 ms
52,268 KB
testcase_05 AC 36 ms
52,196 KB
testcase_06 AC 36 ms
52,956 KB
testcase_07 AC 306 ms
79,092 KB
testcase_08 AC 334 ms
79,060 KB
testcase_09 AC 311 ms
79,264 KB
testcase_10 AC 39 ms
52,396 KB
testcase_11 AC 187 ms
77,340 KB
testcase_12 AC 323 ms
77,948 KB
testcase_13 AC 166 ms
76,916 KB
testcase_14 AC 211 ms
77,500 KB
testcase_15 AC 521 ms
79,076 KB
testcase_16 AC 126 ms
77,304 KB
testcase_17 AC 91 ms
77,024 KB
testcase_18 AC 120 ms
76,484 KB
testcase_19 AC 102 ms
76,924 KB
testcase_20 AC 206 ms
77,224 KB
testcase_21 AC 139 ms
77,336 KB
testcase_22 AC 356 ms
77,904 KB
testcase_23 AC 97 ms
77,060 KB
testcase_24 AC 145 ms
77,036 KB
testcase_25 AC 89 ms
76,952 KB
testcase_26 AC 131 ms
76,856 KB
testcase_27 AC 225 ms
76,668 KB
testcase_28 AC 120 ms
75,944 KB
testcase_29 AC 150 ms
76,792 KB
testcase_30 AC 339 ms
77,928 KB
testcase_31 AC 163 ms
76,900 KB
testcase_32 AC 224 ms
74,972 KB
testcase_33 AC 47 ms
60,572 KB
testcase_34 AC 38 ms
52,688 KB
testcase_35 AC 35 ms
52,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
a=list(map(int,input().split()))
e=[]
for i in range(m):
  x,y,z=map(int,input().split())
  x-=1
  y-=1
  e+=[(x,y,z-a[x])]
X=10**20
v=[X]*n
v[0]=0
for i in range(n):
  p=[]
  f=0
  for x,y,z in e:
    if v[y]>v[x]+z:
      v[y]=v[x]+z
      f=1
      p+=[y]
if f==0:
  print(-v[-1]+a[-1])
else:
  E=[[] for i in range(n)]
  for x,y,z in e:
    E[x]+=[y]
  q=[]
  u=[0]*n
  for s in p:
    q+=[s]
    v[s]=1
  for s in q:
    for t in E[s]:
      if u[t]==0:
        u[t]=1
        q+=[t]
  print(-v[-1]+a[-1] if u[-1]==0 else "inf")
0