結果

問題 No.2955 Pizza Delivery Plan
ユーザー 👑 p-adicp-adic
提出日時 2024-10-24 17:47:02
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 554 bytes
コンパイル時間 404 ms
コンパイル使用メモリ 82,212 KB
実行使用メモリ 138,972 KB
最終ジャッジ日時 2024-10-25 19:25:40
合計ジャッジ時間 26,031 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,784 KB
testcase_01 AC 37 ms
52,912 KB
testcase_02 AC 38 ms
53,372 KB
testcase_03 AC 44 ms
62,872 KB
testcase_04 AC 54 ms
65,780 KB
testcase_05 AC 38 ms
53,296 KB
testcase_06 AC 38 ms
53,332 KB
testcase_07 AC 37 ms
53,476 KB
testcase_08 AC 277 ms
101,468 KB
testcase_09 AC 279 ms
101,488 KB
testcase_10 AC 388 ms
105,232 KB
testcase_11 AC 448 ms
108,924 KB
testcase_12 AC 540 ms
112,112 KB
testcase_13 AC 623 ms
115,920 KB
testcase_14 AC 722 ms
119,784 KB
testcase_15 AC 790 ms
123,380 KB
testcase_16 AC 897 ms
125,416 KB
testcase_17 AC 1,071 ms
128,204 KB
testcase_18 AC 1,229 ms
129,568 KB
testcase_19 AC 1,433 ms
132,624 KB
testcase_20 AC 1,691 ms
134,364 KB
testcase_21 AC 1,896 ms
136,924 KB
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 AC 505 ms
112,192 KB
testcase_26 AC 443 ms
108,672 KB
testcase_27 AC 386 ms
105,160 KB
testcase_28 AC 1,237 ms
130,612 KB
testcase_29 AC 1,456 ms
132,388 KB
testcase_30 AC 1,971 ms
138,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

R=range
J=lambda:map(int,input().split())
N,K=J()
v=[list(J())for i in R(N)]+[[0,0]]
M=N+1
w=[[0]*M for i in R(M)]
for i in R(M):
	for j in R(i,M):w[i][j]=w[j][i]=((v[i][0]-v[j][0])**2+(v[i][1]-v[j][1])**2)**0.5
S=R(1<<N)
D=[[[9**30]*(K+1)for i in R(M)]for p in S]
D[0][N][K]=0
for p in S:
	for i in R(N):
		if(p>>i)&1:
			q=p^(1<<i);D[p][i][K-1]=D[q][N][K]+w[N][i]
			for j in R(N):
				if(q>>j)&1:
					for k in R(K):D[p][i][k]=min(D[p][i][k],D[q][j][k+1]+w[j][i])
			for k in R(K):D[p][N][K]=min(D[p][N][K],D[p][i][k]+w[i][N])
print(D[(1<<N)-1][N][K])
0