結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,864 KB
testcase_01 AC 36 ms
52,880 KB
testcase_02 AC 37 ms
53,808 KB
testcase_03 AC 41 ms
59,816 KB
testcase_04 AC 53 ms
65,520 KB
testcase_05 AC 37 ms
54,908 KB
testcase_06 AC 38 ms
53,272 KB
testcase_07 AC 38 ms
53,892 KB
testcase_08 AC 345 ms
101,000 KB
testcase_09 AC 346 ms
101,312 KB
testcase_10 AC 463 ms
105,428 KB
testcase_11 AC 520 ms
108,724 KB
testcase_12 AC 632 ms
112,584 KB
testcase_13 AC 677 ms
115,868 KB
testcase_14 AC 784 ms
118,992 KB
testcase_15 AC 864 ms
123,008 KB
testcase_16 AC 973 ms
126,368 KB
testcase_17 AC 1,163 ms
128,276 KB
testcase_18 AC 1,334 ms
130,580 KB
testcase_19 AC 1,457 ms
132,508 KB
testcase_20 AC 1,666 ms
134,092 KB
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 AC 649 ms
112,628 KB
testcase_26 AC 542 ms
108,480 KB
testcase_27 AC 467 ms
104,788 KB
testcase_28 AC 1,373 ms
130,196 KB
testcase_29 AC 1,448 ms
133,504 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=[[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:
			for j in R(N):
				if(p>>j)&1<1:
					for k in R(K):D[p|(1<<j)][j][k]=min(D[p|(1<<j)][j][k],D[p][i][k+1]+w[i][j])
			for k in R(K):D[p][N][K]=min(D[p][N][K],D[p][i][k]+w[i][N])
		else:D[p|(1<<i)][i][K-1]=D[p][N][K]+w[N][i]
print(D[(1<<N)-1][N][K])
0