結果

問題 No.2955 Pizza Delivery Plan
ユーザー 👑 p-adicp-adic
提出日時 2024-10-24 07:57:08
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 588 bytes
コンパイル時間 426 ms
コンパイル使用メモリ 82,572 KB
実行使用メモリ 139,204 KB
最終ジャッジ日時 2024-10-25 19:24:47
合計ジャッジ時間 27,300 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,672 KB
testcase_01 AC 39 ms
52,900 KB
testcase_02 AC 40 ms
53,216 KB
testcase_03 AC 51 ms
61,800 KB
testcase_04 AC 62 ms
65,460 KB
testcase_05 AC 40 ms
53,804 KB
testcase_06 AC 40 ms
53,824 KB
testcase_07 AC 38 ms
53,140 KB
testcase_08 AC 289 ms
101,572 KB
testcase_09 AC 292 ms
101,588 KB
testcase_10 AC 415 ms
105,128 KB
testcase_11 AC 495 ms
108,744 KB
testcase_12 AC 558 ms
112,176 KB
testcase_13 AC 720 ms
116,120 KB
testcase_14 AC 770 ms
119,912 KB
testcase_15 AC 874 ms
123,508 KB
testcase_16 AC 1,000 ms
125,444 KB
testcase_17 AC 1,157 ms
128,364 KB
testcase_18 AC 1,275 ms
130,708 KB
testcase_19 AC 1,483 ms
132,768 KB
testcase_20 AC 1,711 ms
134,396 KB
testcase_21 AC 1,906 ms
136,704 KB
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 AC 522 ms
111,920 KB
testcase_26 AC 477 ms
108,864 KB
testcase_27 AC 423 ms
104,872 KB
testcase_28 AC 1,316 ms
130,708 KB
testcase_29 AC 1,502 ms
132,460 KB
testcase_30 TLE -
権限があれば一括ダウンロードができます

ソースコード

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:
	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 j in R(N):
		if(p>>j)&1:
			for k in R(K):D[p][N][K]=min(D[p][N][K],D[p][j][k]+w[j][N])
print(D[(1<<N)-1][N][K])
0