結果

問題 No.2712 Play more!
ユーザー detteiuudetteiuu
提出日時 2024-04-11 02:50:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 469 ms / 2,000 ms
コード長 1,218 bytes
コンパイル時間 393 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 78,164 KB
最終ジャッジ日時 2024-10-02 21:18:41
合計ジャッジ時間 6,654 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,760 KB
testcase_01 AC 42 ms
54,016 KB
testcase_02 AC 42 ms
54,144 KB
testcase_03 AC 43 ms
53,632 KB
testcase_04 AC 42 ms
53,888 KB
testcase_05 AC 42 ms
53,888 KB
testcase_06 AC 42 ms
53,888 KB
testcase_07 AC 269 ms
77,624 KB
testcase_08 AC 245 ms
77,184 KB
testcase_09 AC 240 ms
77,824 KB
testcase_10 AC 43 ms
54,272 KB
testcase_11 AC 188 ms
77,592 KB
testcase_12 AC 265 ms
77,400 KB
testcase_13 AC 167 ms
77,056 KB
testcase_14 AC 213 ms
77,556 KB
testcase_15 AC 469 ms
78,164 KB
testcase_16 AC 131 ms
77,480 KB
testcase_17 AC 95 ms
77,440 KB
testcase_18 AC 119 ms
77,696 KB
testcase_19 AC 104 ms
77,312 KB
testcase_20 AC 206 ms
77,512 KB
testcase_21 AC 144 ms
77,568 KB
testcase_22 AC 286 ms
77,568 KB
testcase_23 AC 100 ms
77,312 KB
testcase_24 AC 140 ms
77,440 KB
testcase_25 AC 92 ms
77,352 KB
testcase_26 AC 125 ms
77,696 KB
testcase_27 AC 146 ms
77,388 KB
testcase_28 AC 72 ms
68,864 KB
testcase_29 AC 139 ms
77,620 KB
testcase_30 AC 306 ms
77,936 KB
testcase_31 AC 87 ms
77,312 KB
testcase_32 AC 81 ms
77,232 KB
testcase_33 AC 51 ms
61,824 KB
testcase_34 AC 42 ms
53,888 KB
testcase_35 AC 42 ms
54,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

N, M = map(int, input().split())
A = list(map(int, input().split()))
edge = [list(map(int, input().split())) for _ in range(M)]

for i in range(M):
    edge[i][2] = A[edge[i][1]-1]-edge[i][2]

INF = float("inf")
dist = [-INF]*N
dist[0] = A[0]
for i in range(N):
    flag = False
    for j in range(M):
        a, b, c = edge[j]
        if dist[a-1]+c > dist[b-1]:
            dist[b-1] = dist[a-1]+c
            flag = True
    if not flag:
        print(dist[-1])
        break
else:
    d = dist[:]
    for i in range(M):
        a, b, c = edge[i]
        if d[a-1]+c > d[b-1]:
            d[b-1] = d[a-1]+c
    G = [[] for _ in range(N)]
    for i in range(M):
        a, b, c = edge[i]
        G[a-1].append(b-1)
    visited = [False]*N
    for i in range(N):
        if d[i] != dist[i] and not visited[i]:
            visited[i] = True
            que = deque()
            que.append(i)
            while que:
                n = que.popleft()
                if n == N-1:
                    exit(print("inf"))
                for v in G[n]:
                    if not visited[v]:
                        visited[v] = True
                        que.append(v)
    print(dist[-1])
0