結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,016 KB
testcase_01 AC 38 ms
53,944 KB
testcase_02 AC 45 ms
60,508 KB
testcase_03 AC 49 ms
62,644 KB
testcase_04 AC 63 ms
69,752 KB
testcase_05 AC 39 ms
53,116 KB
testcase_06 AC 44 ms
62,820 KB
testcase_07 AC 38 ms
53,332 KB
testcase_08 AC 289 ms
101,372 KB
testcase_09 AC 294 ms
101,192 KB
testcase_10 AC 395 ms
104,912 KB
testcase_11 AC 501 ms
108,672 KB
testcase_12 AC 562 ms
111,908 KB
testcase_13 AC 646 ms
115,348 KB
testcase_14 AC 802 ms
118,520 KB
testcase_15 AC 859 ms
121,840 KB
testcase_16 AC 1,021 ms
125,620 KB
testcase_17 AC 1,191 ms
127,912 KB
testcase_18 AC 1,339 ms
130,144 KB
testcase_19 AC 1,541 ms
133,024 KB
testcase_20 AC 1,728 ms
134,096 KB
testcase_21 AC 1,987 ms
136,488 KB
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 AC 568 ms
111,652 KB
testcase_26 AC 539 ms
108,948 KB
testcase_27 AC 395 ms
104,952 KB
testcase_28 AC 1,417 ms
130,160 KB
testcase_29 AC 1,579 ms
132,736 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 k in R(K):
				for j in R(N):
					if(q>>j)&1:D[p][i][k]=min(D[p][i][k],D[q][j][k+1]+w[j][i])
				D[p][N][K]=min(D[p][N][K],D[p][i][k]+w[i][N])
print(D[(1<<N)-1][N][K])
0