結果

問題 No.2955 Pizza Delivery Plan
ユーザー timitimi
提出日時 2024-11-08 22:43:26
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 836 bytes
コンパイル時間 1,024 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 317,576 KB
最終ジャッジ日時 2024-11-08 22:44:13
合計ジャッジ時間 44,074 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
53,760 KB
testcase_01 AC 46 ms
54,016 KB
testcase_02 AC 55 ms
62,080 KB
testcase_03 AC 56 ms
62,976 KB
testcase_04 AC 62 ms
64,640 KB
testcase_05 AC 48 ms
54,144 KB
testcase_06 AC 56 ms
61,952 KB
testcase_07 AC 46 ms
54,016 KB
testcase_08 AC 117 ms
80,768 KB
testcase_09 AC 124 ms
81,152 KB
testcase_10 AC 366 ms
94,556 KB
testcase_11 AC 761 ms
133,632 KB
testcase_12 AC 1,060 ms
168,712 KB
testcase_13 AC 1,549 ms
208,020 KB
testcase_14 AC 1,784 ms
250,092 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 AC 1,147 ms
169,740 KB
testcase_26 AC 765 ms
134,452 KB
testcase_27 AC 351 ms
94,664 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
権限があれば一括ダウンロードができます

ソースコード

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)] for j in range(K+1)]
from collections import deque
d=deque()
d.append((0,0,K))
dp[K][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[c-1][i+1][bbit]>dp[c][now][bit]+D[now][i+1] and c>1:
        dp[c-1][i+1][bbit]=dp[c][now][bit]+D[now][i+1]
        d.append((i+1,bbit,c-1))
      if dp[K][0][bbit]>dp[c][now][bit]+D[now][i+1]+D[i+1][0]:
        dp[K][0][bbit]=dp[c][now][bit]+D[now][i+1]+D[i+1][0]
        d.append((0,bbit,K))
      
print(dp[K][0][-1])
0