結果

問題 No.2712 Play more!
ユーザー nikoro256nikoro256
提出日時 2024-03-31 14:50:28
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 568 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 77,952 KB
最終ジャッジ日時 2024-09-30 20:00:52
合計ジャッジ時間 6,922 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,448 KB
testcase_01 AC 35 ms
52,156 KB
testcase_02 AC 35 ms
52,332 KB
testcase_03 AC 35 ms
53,352 KB
testcase_04 WA -
testcase_05 AC 35 ms
52,816 KB
testcase_06 AC 35 ms
53,168 KB
testcase_07 AC 385 ms
77,952 KB
testcase_08 AC 397 ms
77,428 KB
testcase_09 AC 393 ms
77,448 KB
testcase_10 WA -
testcase_11 AC 181 ms
73,816 KB
testcase_12 AC 408 ms
77,828 KB
testcase_13 AC 132 ms
74,612 KB
testcase_14 AC 323 ms
74,568 KB
testcase_15 AC 524 ms
77,880 KB
testcase_16 AC 102 ms
74,224 KB
testcase_17 AC 76 ms
71,828 KB
testcase_18 AC 122 ms
72,632 KB
testcase_19 AC 85 ms
72,932 KB
testcase_20 AC 200 ms
77,324 KB
testcase_21 AC 141 ms
74,692 KB
testcase_22 AC 385 ms
77,916 KB
testcase_23 AC 85 ms
74,020 KB
testcase_24 AC 124 ms
72,856 KB
testcase_25 AC 73 ms
72,976 KB
testcase_26 AC 133 ms
73,716 KB
testcase_27 AC 311 ms
74,108 KB
testcase_28 AC 92 ms
67,684 KB
testcase_29 AC 126 ms
73,524 KB
testcase_30 AC 399 ms
77,320 KB
testcase_31 AC 82 ms
77,932 KB
testcase_32 AC 82 ms
77,520 KB
testcase_33 AC 47 ms
60,408 KB
testcase_34 AC 37 ms
52,952 KB
testcase_35 AC 36 ms
52,516 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())
A=list(map(int,input().split()))
edge=[[] for _ in range(N)]
edges=[]
for i in range(N):
    edges.append([i,N+i,-A[i]])
for _ in range(M):
    a,b,c=map(int,input().split())
    edge[a-1].append([b-1,c])
    edges.append([N+a-1,b-1,c])
ans=[10**14 for _ in range(2*N)]
ans[0]=0
for i in range(2*N):
    update=False
    for a,b,c in edges:
        if ans[b]>ans[a]+c:
            ans[b]=ans[a]+c
            update=True
    #print(ans)
    if not update:
        break
    if i==2*N-1:
        print('inf')
        exit(0)
print(-ans[-1])
0