結果

問題 No.2712 Play more!
ユーザー timitimi
提出日時 2024-04-06 13:12:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 420 ms / 2,000 ms
コード長 1,013 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 82,540 KB
実行使用メモリ 78,524 KB
最終ジャッジ日時 2024-10-01 03:49:11
合計ジャッジ時間 5,739 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
54,512 KB
testcase_01 AC 40 ms
54,096 KB
testcase_02 AC 41 ms
54,600 KB
testcase_03 AC 41 ms
54,264 KB
testcase_04 AC 41 ms
53,988 KB
testcase_05 AC 42 ms
54,208 KB
testcase_06 AC 41 ms
53,688 KB
testcase_07 AC 226 ms
77,928 KB
testcase_08 AC 245 ms
78,424 KB
testcase_09 AC 227 ms
77,904 KB
testcase_10 AC 42 ms
54,380 KB
testcase_11 AC 161 ms
77,336 KB
testcase_12 AC 223 ms
77,984 KB
testcase_13 AC 162 ms
77,656 KB
testcase_14 AC 199 ms
77,852 KB
testcase_15 AC 420 ms
78,524 KB
testcase_16 AC 121 ms
77,788 KB
testcase_17 AC 87 ms
77,464 KB
testcase_18 AC 110 ms
77,284 KB
testcase_19 AC 99 ms
77,608 KB
testcase_20 AC 198 ms
77,884 KB
testcase_21 AC 155 ms
78,060 KB
testcase_22 AC 220 ms
78,296 KB
testcase_23 AC 94 ms
77,532 KB
testcase_24 AC 129 ms
77,248 KB
testcase_25 AC 85 ms
77,804 KB
testcase_26 AC 117 ms
77,524 KB
testcase_27 AC 85 ms
77,576 KB
testcase_28 AC 69 ms
68,944 KB
testcase_29 AC 138 ms
77,944 KB
testcase_30 AC 248 ms
78,232 KB
testcase_31 AC 85 ms
77,784 KB
testcase_32 AC 86 ms
78,024 KB
testcase_33 AC 45 ms
56,792 KB
testcase_34 AC 39 ms
55,156 KB
testcase_35 AC 43 ms
54,860 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):
        update = False # 更新が行われたか
        for x, y, z in g:
            if d[y] > d[x] + z:
                d[y] = d[x] + z
                update = True
        if not update:
            break
        # 負閉路が存在
        if i == 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(g,D)
ans=bellman_ford(0)
#print(ans)
if ans==-1:
  print('inf')
else:
  print(A[0]-ans[-1])
0