結果

問題 No.2712 Play more!
ユーザー hato336hato336
提出日時 2024-03-31 14:12:26
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 859 bytes
コンパイル時間 234 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 92,620 KB
最終ジャッジ日時 2024-09-30 19:10:39
合計ジャッジ時間 25,004 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
85,700 KB
testcase_01 AC 113 ms
85,636 KB
testcase_02 AC 120 ms
85,800 KB
testcase_03 AC 119 ms
85,724 KB
testcase_04 AC 114 ms
85,712 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 1,616 ms
90,316 KB
testcase_10 AC 112 ms
85,704 KB
testcase_11 AC 600 ms
90,392 KB
testcase_12 AC 1,524 ms
91,316 KB
testcase_13 AC 486 ms
90,468 KB
testcase_14 AC 1,090 ms
90,864 KB
testcase_15 TLE -
testcase_16 AC 279 ms
90,328 KB
testcase_17 AC 172 ms
90,116 KB
testcase_18 AC 340 ms
90,444 KB
testcase_19 AC 247 ms
90,648 KB
testcase_20 AC 665 ms
90,524 KB
testcase_21 AC 357 ms
90,500 KB
testcase_22 AC 1,512 ms
91,088 KB
testcase_23 AC 219 ms
90,224 KB
testcase_24 AC 404 ms
90,380 KB
testcase_25 AC 168 ms
90,184 KB
testcase_26 AC 437 ms
90,444 KB
testcase_27 AC 760 ms
90,500 KB
testcase_28 AC 645 ms
90,164 KB
testcase_29 AC 359 ms
90,336 KB
testcase_30 AC 1,506 ms
91,044 KB
testcase_31 TLE -
testcase_32 AC 1,557 ms
90,796 KB
testcase_33 AC 129 ms
89,248 KB
testcase_34 AC 114 ms
85,692 KB
testcase_35 AC 110 ms
85,572 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
    check = []
    for i in range(2*n):
        update = False # 更新が行われたか
        for x, y, z in g:
            if d[y] > d[x] + z:
                d[y] = d[x] + z
                update = True
        check.append(d[-1])
        # 負閉路が存在
    if check[-1] != check[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