結果

問題 No.2955 Pizza Delivery Plan
ユーザー hirayuu_ychirayuu_yc
提出日時 2024-11-08 22:05:16
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 651 bytes
コンパイル時間 267 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 87,552 KB
最終ジャッジ日時 2024-11-08 22:05:33
合計ジャッジ時間 4,372 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
60,416 KB
testcase_01 AC 48 ms
55,040 KB
testcase_02 AC 58 ms
63,744 KB
testcase_03 AC 91 ms
77,312 KB
testcase_04 AC 178 ms
79,468 KB
testcase_05 AC 48 ms
56,192 KB
testcase_06 AC 57 ms
63,616 KB
testcase_07 AC 47 ms
55,808 KB
testcase_08 TLE -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

def dist(p, q):
    x1, y1 = p
    x2, y2 = q
    return math.sqrt((x2 - x1) ** 2 + (y2 - y1) ** 2)
from functools import lru_cache
@lru_cache
def calc(pizza,pos,bits):
	if pizza==0:
		return calc(K,0,bits)+dist(dot[0],dot[pos])
	if bits==((1<<(N+1))-1):
		return dist(dot[0],dot[pos])
	ret=None
	if pizza!=K:
		ret=calc(K,0,bits)+dist(dot[0],dot[pos])
	for i in range(1,N+1):
		if not (bits>>i)&1:
			now=calc(pizza-1,i,bits|(1<<i))+dist(dot[i],dot[pos])
			if ret is None:
				ret=now
			ret=min(ret,now)
	return ret
	
N,K=map(int,input().split())
dot=[(0.0,0.0)]+[tuple(map(float,input().split())) for i in range(N)]
print(calc(K,0,1))
0