結果

問題 No.2955 Pizza Delivery Plan
ユーザー timitimi
提出日時 2024-11-08 23:23:10
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 836 bytes
コンパイル時間 344 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 301,184 KB
最終ジャッジ日時 2024-11-08 23:24:02
合計ジャッジ時間 22,893 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
59,648 KB
testcase_01 AC 48 ms
54,144 KB
testcase_02 AC 56 ms
62,336 KB
testcase_03 AC 59 ms
62,976 KB
testcase_04 AC 65 ms
65,024 KB
testcase_05 AC 48 ms
54,272 KB
testcase_06 AC 56 ms
62,080 KB
testcase_07 AC 49 ms
54,400 KB
testcase_08 AC 127 ms
81,408 KB
testcase_09 AC 134 ms
81,152 KB
testcase_10 AC 417 ms
98,936 KB
testcase_11 AC 863 ms
135,904 KB
testcase_12 AC 1,250 ms
173,116 KB
testcase_13 AC 1,702 ms
214,300 KB
testcase_14 TLE -
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,305 ms
171,228 KB
testcase_26 AC 860 ms
137,016 KB
testcase_27 AC 428 ms
98,928 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**18]*(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