結果

問題 No.2712 Play more!
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-04-05 14:46:41
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 526 bytes
コンパイル時間 343 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 78,244 KB
最終ジャッジ日時 2024-10-01 01:07:47
合計ジャッジ時間 6,799 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,304 KB
testcase_01 AC 39 ms
52,952 KB
testcase_02 AC 38 ms
52,488 KB
testcase_03 AC 38 ms
52,320 KB
testcase_04 AC 38 ms
53,816 KB
testcase_05 AC 38 ms
52,632 KB
testcase_06 AC 39 ms
52,316 KB
testcase_07 AC 329 ms
77,936 KB
testcase_08 AC 318 ms
78,244 KB
testcase_09 AC 299 ms
78,088 KB
testcase_10 AC 39 ms
54,020 KB
testcase_11 AC 173 ms
77,112 KB
testcase_12 WA -
testcase_13 AC 151 ms
76,860 KB
testcase_14 AC 201 ms
76,788 KB
testcase_15 WA -
testcase_16 AC 119 ms
76,940 KB
testcase_17 AC 82 ms
74,496 KB
testcase_18 AC 114 ms
76,304 KB
testcase_19 AC 96 ms
76,608 KB
testcase_20 AC 194 ms
76,860 KB
testcase_21 AC 135 ms
77,124 KB
testcase_22 AC 300 ms
77,312 KB
testcase_23 AC 94 ms
77,008 KB
testcase_24 AC 126 ms
76,952 KB
testcase_25 AC 80 ms
76,724 KB
testcase_26 AC 108 ms
76,732 KB
testcase_27 AC 203 ms
76,760 KB
testcase_28 AC 106 ms
75,796 KB
testcase_29 AC 126 ms
76,700 KB
testcase_30 AC 280 ms
77,392 KB
testcase_31 AC 288 ms
77,008 KB
testcase_32 AC 307 ms
74,060 KB
testcase_33 AC 47 ms
60,896 KB
testcase_34 AC 37 ms
52,412 KB
testcase_35 AC 37 ms
52,068 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):
  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=[p]
  u=[0]*n
  u[p]=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