結果

問題 No.2712 Play more!
ユーザー hato336hato336
提出日時 2024-03-31 14:07:45
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 850 bytes
コンパイル時間 416 ms
コンパイル使用メモリ 82,660 KB
実行使用メモリ 91,496 KB
最終ジャッジ日時 2024-09-30 19:01:09
合計ジャッジ時間 15,006 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
85,712 KB
testcase_01 AC 116 ms
85,792 KB
testcase_02 AC 116 ms
85,836 KB
testcase_03 AC 119 ms
85,760 KB
testcase_04 WA -
testcase_05 AC 116 ms
85,620 KB
testcase_06 AC 114 ms
85,912 KB
testcase_07 AC 978 ms
90,452 KB
testcase_08 AC 723 ms
91,156 KB
testcase_09 AC 971 ms
90,516 KB
testcase_10 WA -
testcase_11 AC 384 ms
90,300 KB
testcase_12 AC 907 ms
90,900 KB
testcase_13 AC 342 ms
90,520 KB
testcase_14 AC 675 ms
90,664 KB
testcase_15 AC 1,346 ms
91,496 KB
testcase_16 AC 242 ms
90,600 KB
testcase_17 AC 172 ms
90,192 KB
testcase_18 AC 276 ms
90,728 KB
testcase_19 AC 198 ms
90,320 KB
testcase_20 AC 440 ms
90,268 KB
testcase_21 AC 280 ms
90,608 KB
testcase_22 AC 895 ms
90,964 KB
testcase_23 AC 189 ms
90,476 KB
testcase_24 AC 281 ms
90,316 KB
testcase_25 AC 165 ms
90,248 KB
testcase_26 AC 294 ms
90,616 KB
testcase_27 AC 477 ms
90,528 KB
testcase_28 AC 189 ms
90,308 KB
testcase_29 AC 264 ms
90,448 KB
testcase_30 AC 893 ms
90,816 KB
testcase_31 AC 154 ms
90,512 KB
testcase_32 AC 158 ms
90,516 KB
testcase_33 AC 132 ms
89,272 KB
testcase_34 AC 115 ms
85,756 KB
testcase_35 AC 115 ms
85,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections,sys,math,functools,operator,itertools,bisect,heapq,decimal,string,time,random
# O(EV)
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 = []


n,m = map(int,input().split())
n *= 2
alist = list(map(int,input().split()))
for i in range(m):
    a,b,c = map(int,input().split())
    a -= 1
    b -= 1
    g.append((a*2+1,b*2,c))
for i in range(n//2):
    g.append((i*2,i*2+1,-alist[i]))
z = bellman_ford(0)
print('inf' if z == -1 else -z[-1])
0