結果

問題 No.2712 Play more!
ユーザー timitimi
提出日時 2024-04-06 12:52:16
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 903 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,596 KB
実行使用メモリ 78,636 KB
最終ジャッジ日時 2024-10-01 03:49:05
合計ジャッジ時間 7,173 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,320 KB
testcase_01 AC 40 ms
54,844 KB
testcase_02 AC 41 ms
55,520 KB
testcase_03 AC 42 ms
54,776 KB
testcase_04 AC 40 ms
55,624 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 224 ms
77,948 KB
testcase_10 AC 41 ms
54,472 KB
testcase_11 AC 208 ms
77,912 KB
testcase_12 AC 367 ms
78,052 KB
testcase_13 AC 200 ms
77,624 KB
testcase_14 WA -
testcase_15 AC 644 ms
78,636 KB
testcase_16 AC 150 ms
77,772 KB
testcase_17 AC 93 ms
77,404 KB
testcase_18 AC 127 ms
77,360 KB
testcase_19 AC 116 ms
77,672 KB
testcase_20 AC 256 ms
77,932 KB
testcase_21 AC 184 ms
78,244 KB
testcase_22 AC 340 ms
78,264 KB
testcase_23 AC 102 ms
77,632 KB
testcase_24 AC 159 ms
77,440 KB
testcase_25 AC 90 ms
77,924 KB
testcase_26 AC 156 ms
77,420 KB
testcase_27 WA -
testcase_28 AC 106 ms
69,624 KB
testcase_29 AC 167 ms
77,728 KB
testcase_30 AC 346 ms
78,212 KB
testcase_31 AC 279 ms
77,940 KB
testcase_32 AC 233 ms
77,868 KB
testcase_33 AC 52 ms
62,168 KB
testcase_34 AC 39 ms
54,000 KB
testcase_35 AC 40 ms
53,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())
A=list(map(int, input().split()))
n=N
def bellman_ford(s):
    d = [float('inf')]*n # 各頂点への最小コスト
    d[s] = 0 # 自身への距離は0
    for i in range(n):
        for x, y, z in g:
            if d[y] > d[x] + z and d[x]!=float('inf'):
              d[y] = d[x] + z
              if i == n-1 and y==n-1:
                return -1
    return d

 
g=[]
D=[[]for _ in range(N)];C=[]
for _ in range(M):
  x,y,z=map(int,input().split())
  x-=1;y-=1
  C.append((x,y,z))
  D[y].append(x)
  #g.append([x, y, -z])
  
from collections import deque
d=deque()
V=[-1]*N 
V[N-1]=1
d.append(N-1)
while d:
  now=d.popleft()
  for nex in D[now]:
    if V[nex]==-1:
      V[nex]=1
      d.append(nex)
      
for x,y,z in C:
  if V[x]+V[y]==2:
    g.append((x,y,-A[y]+z))
#print(V,g)
ans=bellman_ford(0)
#print(ans)
if ans==-1:
  print('inf')
else:
  print(A[0]-ans[-1])
0