結果

問題 No.2712 Play more!
ユーザー hato336hato336
提出日時 2024-03-31 14:19:38
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 1,203 bytes
コンパイル時間 360 ms
コンパイル使用メモリ 82,156 KB
実行使用メモリ 93,140 KB
最終ジャッジ日時 2024-09-30 19:22:21
合計ジャッジ時間 17,959 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
85,524 KB
testcase_01 AC 134 ms
85,688 KB
testcase_02 AC 133 ms
85,720 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 AC 133 ms
85,512 KB
testcase_06 AC 135 ms
85,488 KB
testcase_07 AC 998 ms
91,852 KB
testcase_08 RE -
testcase_09 RE -
testcase_10 AC 132 ms
85,724 KB
testcase_11 AC 522 ms
91,284 KB
testcase_12 AC 1,223 ms
91,896 KB
testcase_13 AC 441 ms
90,992 KB
testcase_14 AC 908 ms
91,800 KB
testcase_15 AC 1,744 ms
93,140 KB
testcase_16 AC 283 ms
91,176 KB
testcase_17 AC 199 ms
90,384 KB
testcase_18 AC 322 ms
90,900 KB
testcase_19 AC 251 ms
90,896 KB
testcase_20 AC 562 ms
91,552 KB
testcase_21 AC 318 ms
91,416 KB
testcase_22 AC 1,213 ms
91,640 KB
testcase_23 AC 227 ms
90,444 KB
testcase_24 AC 358 ms
91,304 KB
testcase_25 AC 194 ms
90,504 KB
testcase_26 AC 394 ms
90,904 KB
testcase_27 RE -
testcase_28 AC 239 ms
90,420 KB
testcase_29 AC 339 ms
90,864 KB
testcase_30 AC 1,182 ms
91,932 KB
testcase_31 AC 196 ms
91,832 KB
testcase_32 AC 203 ms
91,664 KB
testcase_33 AC 159 ms
89,400 KB
testcase_34 AC 135 ms
85,612 KB
testcase_35 AC 137 ms
85,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections,sys,math,functools,operator,itertools,bisect,heapq,decimal,string,time,random
# O(EV)

    

g = []


n,m = map(int,input().split())
n *= 2
alist = list(map(int,input().split()))
edge = [[] for i in range(n//2)]
for i in range(m):
    a,b,c = map(int,input().split())
    edge[b-1].append(a-1)
    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]))
start = n//2-1
d = collections.deque()
dist = [10**18 for i in range(n//2)]
d.append(start)
dist[start] = 0
while d:
    now = d.popleft()
    for i in edge[now]:
        if dist[i] > dist[now] + 1:
            dist[i] = dist[now] + 1
            d.append(i)


d = [float('inf')]*n # 各頂点への最小コスト
d[0] = 0 # 自身への距離は0
for i in range(n):
    update = False # 更新が行われたか
    check = [False for rrfrf in range(n)]
    for x, y, z in g:
        if d[y] > d[x] + z:
            d[y] = d[x] + z
            update = True
            check[y] = True
    if not update:
        break
    if i == n-1:
        for j in range(n-1):
            if check[j] == True and dist[j] != 10**18:
                exit(print('inf'))

        


print(-d[-1])
0