結果

問題 No.2712 Play more!
ユーザー 👑 p-adicp-adic
提出日時 2024-06-15 19:19:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,168 ms / 2,000 ms
コード長 417 bytes
コンパイル時間 448 ms
コンパイル使用メモリ 82,600 KB
実行使用メモリ 83,128 KB
最終ジャッジ日時 2024-06-15 19:20:10
合計ジャッジ時間 15,521 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,548 KB
testcase_01 AC 37 ms
52,484 KB
testcase_02 AC 36 ms
53,916 KB
testcase_03 AC 39 ms
53,256 KB
testcase_04 AC 36 ms
53,988 KB
testcase_05 AC 37 ms
53,276 KB
testcase_06 AC 38 ms
53,004 KB
testcase_07 AC 793 ms
82,916 KB
testcase_08 AC 854 ms
82,940 KB
testcase_09 AC 827 ms
83,128 KB
testcase_10 AC 37 ms
52,508 KB
testcase_11 AC 289 ms
77,672 KB
testcase_12 AC 983 ms
78,436 KB
testcase_13 AC 266 ms
77,064 KB
testcase_14 AC 692 ms
78,744 KB
testcase_15 AC 1,168 ms
79,308 KB
testcase_16 AC 147 ms
76,852 KB
testcase_17 AC 101 ms
76,936 KB
testcase_18 AC 215 ms
77,080 KB
testcase_19 AC 131 ms
77,024 KB
testcase_20 AC 356 ms
77,852 KB
testcase_21 AC 181 ms
77,244 KB
testcase_22 AC 1,065 ms
78,760 KB
testcase_23 AC 98 ms
76,968 KB
testcase_24 AC 213 ms
77,216 KB
testcase_25 AC 93 ms
77,268 KB
testcase_26 AC 225 ms
77,168 KB
testcase_27 AC 804 ms
77,968 KB
testcase_28 AC 531 ms
76,916 KB
testcase_29 AC 199 ms
77,380 KB
testcase_30 AC 1,039 ms
79,156 KB
testcase_31 AC 790 ms
77,696 KB
testcase_32 AC 863 ms
77,692 KB
testcase_33 AC 47 ms
61,656 KB
testcase_34 AC 37 ms
52,676 KB
testcase_35 AC 37 ms
53,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

R=range
J=lambda:map(int,input().split())
N,M=J()
A=list(J())
E=[[]for i in R(N*2)]
F=[]
for i in R(N):E[i]+=[i+N];F+=[[i,i+N,-A[i]]]
for j in R(M):a,b,c=J();a=a-1+N;E[a]+=[b-1];F+=[[a,b-1,c]]
N*=2
W=[0]+[9**20]*N
for _ in R(N):
	for i,j,w in F:W[j]=min(W[j],W[i]+w)
b=[1]*N
for i,j,w in F:b[i]&=W[j]<=W[i]+w
D=[i for i in R(N)if b[i]<1]
while D:
	for j in E[D.pop()]:D+=[j]*b[j];b[j]=0
print(["inf",-W[N-1]][b[N-1]])
0