結果

問題 No.2955 Pizza Delivery Plan
ユーザー timitimi
提出日時 2024-11-08 23:04:50
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 868 bytes
コンパイル時間 328 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 190,828 KB
最終ジャッジ日時 2024-11-08 23:05:36
合計ジャッジ時間 20,314 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
56,152 KB
testcase_01 AC 41 ms
54,272 KB
testcase_02 AC 49 ms
62,464 KB
testcase_03 AC 50 ms
62,720 KB
testcase_04 AC 56 ms
64,896 KB
testcase_05 AC 42 ms
54,784 KB
testcase_06 AC 48 ms
62,464 KB
testcase_07 AC 43 ms
54,144 KB
testcase_08 AC 158 ms
105,768 KB
testcase_09 AC 175 ms
105,772 KB
testcase_10 AC 379 ms
110,328 KB
testcase_11 AC 695 ms
122,848 KB
testcase_12 AC 968 ms
135,020 KB
testcase_13 AC 1,323 ms
145,752 KB
testcase_14 AC 1,587 ms
159,380 KB
testcase_15 AC 1,757 ms
165,896 KB
testcase_16 AC 1,933 ms
175,480 KB
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 AC 1,979 ms
187,156 KB
testcase_22 AC 1,920 ms
184,288 KB
testcase_23 TLE -
testcase_24 AC 1,958 ms
182,956 KB
testcase_25 AC 983 ms
134,552 KB
testcase_26 AC 713 ms
123,404 KB
testcase_27 AC 360 ms
111,032 KB
testcase_28 TLE -
testcase_29 AC 1,980 ms
183,944 KB
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

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