結果

問題 No.2955 Pizza Delivery Plan
ユーザー timitimi
提出日時 2024-11-08 22:41:06
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 780 bytes
コンパイル時間 357 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 110,756 KB
最終ジャッジ日時 2024-11-08 22:41:25
合計ジャッジ時間 9,884 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,144 KB
testcase_01 AC 39 ms
54,144 KB
testcase_02 AC 44 ms
54,016 KB
testcase_03 AC 59 ms
62,336 KB
testcase_04 AC 58 ms
62,592 KB
testcase_05 AC 43 ms
54,144 KB
testcase_06 AC 43 ms
54,400 KB
testcase_07 AC 41 ms
54,144 KB
testcase_08 AC 104 ms
79,184 KB
testcase_09 AC 107 ms
79,360 KB
testcase_10 AC 259 ms
84,236 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 404 ms
106,412 KB
testcase_23 AC 364 ms
104,776 KB
testcase_24 AC 353 ms
103,780 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 213 ms
84,448 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 351 ms
103,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int, input().split())

D=[[-1]*(N+1) for i in range(N+1)]

A=[(0,0)]
for i in range(N):
  x,y=map(int, input().split())
  A.append((x,y))
  
for i in range(N+1):
  for j in range(N+1):
    x=A[i][0]-A[j][0]
    y=A[i][1]-A[j][1]
    D[i][j]=(x**2+y**2)**.5

dp=[[10**20]*(1<<N) for i in range(N+1)]
from collections import deque
d=deque()
d.append((0,0,K))
dp[0][0]=0
while d:
  now,bit,c=d.popleft()
  for i in range(N):
    if not (bit & (1<<i)):
      bbit=bit^(1<<i)
      if dp[i+1][bbit]>dp[now][bit]+D[now][i+1] and c>1:
        dp[i+1][bbit]=dp[now][bit]+D[now][i+1]
        d.append((i+1,bbit,c-1))
      if dp[0][bbit]>dp[now][bit]+D[now][i+1]+D[i+1][0]:
        dp[0][bbit]=dp[now][bit]+D[now][i+1]+D[i+1][0]
        d.append((0,bbit,K))
      
print(dp[0][-1])
0