結果

問題 No.2955 Pizza Delivery Plan
ユーザー 👑 p-adicp-adic
提出日時 2024-10-24 07:59:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,890 ms / 2,000 ms
コード長 579 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 138,464 KB
最終ジャッジ日時 2024-10-25 19:24:47
合計ジャッジ時間 23,967 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,532 KB
testcase_01 AC 35 ms
53,120 KB
testcase_02 AC 36 ms
53,608 KB
testcase_03 AC 42 ms
61,228 KB
testcase_04 AC 54 ms
64,752 KB
testcase_05 AC 38 ms
53,716 KB
testcase_06 AC 38 ms
53,904 KB
testcase_07 AC 35 ms
53,112 KB
testcase_08 AC 258 ms
101,308 KB
testcase_09 AC 253 ms
101,612 KB
testcase_10 AC 375 ms
104,844 KB
testcase_11 AC 459 ms
108,864 KB
testcase_12 AC 491 ms
111,928 KB
testcase_13 AC 620 ms
115,868 KB
testcase_14 AC 657 ms
119,368 KB
testcase_15 AC 764 ms
123,256 KB
testcase_16 AC 812 ms
125,368 KB
testcase_17 AC 985 ms
128,020 KB
testcase_18 AC 1,127 ms
130,776 KB
testcase_19 AC 1,319 ms
132,464 KB
testcase_20 AC 1,525 ms
134,092 KB
testcase_21 AC 1,692 ms
136,620 KB
testcase_22 AC 1,810 ms
138,464 KB
testcase_23 AC 1,815 ms
138,420 KB
testcase_24 AC 1,890 ms
138,160 KB
testcase_25 AC 463 ms
111,916 KB
testcase_26 AC 430 ms
108,740 KB
testcase_27 AC 384 ms
104,836 KB
testcase_28 AC 1,135 ms
130,676 KB
testcase_29 AC 1,321 ms
132,228 KB
testcase_30 AC 1,833 ms
138,288 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=[[9**20]*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:
	d=D[p]
	for i in R(N):
		if(p>>i)&1:
			q=p^(1<<i);e=D[q];d[i][K-1]=e[N][K]+w[N][i]
			for j in R(N):
				if(q>>j)&1:
					for k in R(K):d[i][k]=min(d[i][k],e[j][k+1]+w[j][i])
	for j in R(N):
		if(p>>j)&1:
			for k in R(K):d[N][K]=min(d[N][K],d[j][k]+w[j][N])
print(D[(1<<N)-1][N][K])
0