結果

問題 No.2712 Play more!
ユーザー nikoro256nikoro256
提出日時 2024-03-31 15:10:16
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 513 bytes
コンパイル時間 350 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 86,444 KB
最終ジャッジ日時 2024-09-30 20:21:09
合計ジャッジ時間 12,676 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,400 KB
testcase_01 AC 37 ms
52,336 KB
testcase_02 AC 40 ms
53,428 KB
testcase_03 AC 37 ms
52,408 KB
testcase_04 WA -
testcase_05 AC 37 ms
52,524 KB
testcase_06 AC 36 ms
52,528 KB
testcase_07 AC 972 ms
86,200 KB
testcase_08 AC 953 ms
86,444 KB
testcase_09 AC 949 ms
86,204 KB
testcase_10 WA -
testcase_11 AC 273 ms
76,924 KB
testcase_12 AC 906 ms
78,112 KB
testcase_13 AC 259 ms
76,876 KB
testcase_14 AC 665 ms
77,756 KB
testcase_15 AC 1,069 ms
79,260 KB
testcase_16 AC 138 ms
77,076 KB
testcase_17 AC 88 ms
76,464 KB
testcase_18 AC 179 ms
77,032 KB
testcase_19 AC 110 ms
76,564 KB
testcase_20 AC 287 ms
76,880 KB
testcase_21 AC 160 ms
77,240 KB
testcase_22 AC 932 ms
78,056 KB
testcase_23 AC 90 ms
77,040 KB
testcase_24 AC 183 ms
77,248 KB
testcase_25 AC 79 ms
74,488 KB
testcase_26 AC 190 ms
76,712 KB
testcase_27 AC 883 ms
77,024 KB
testcase_28 AC 155 ms
76,860 KB
testcase_29 AC 181 ms
76,648 KB
testcase_30 AC 920 ms
78,052 KB
testcase_31 AC 85 ms
77,356 KB
testcase_32 AC 89 ms
77,436 KB
testcase_33 AC 46 ms
61,136 KB
testcase_34 AC 36 ms
52,528 KB
testcase_35 AC 35 ms
52,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())
A=list(map(int,input().split()))
edges=[]
for i in range(N):
    edges.append([i,N+i,-A[i]])
for _ in range(M):
    a,b,c=map(int,input().split())
    edges.append([N+a-1,b-1,c])
ans=[10**22 for _ in range(2*N)]
ans[0]=0
for i in range(2*N+2):
    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