結果

問題 No.2955 Pizza Delivery Plan
ユーザー timitimi
提出日時 2024-11-09 19:54:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 871 ms / 2,000 ms
コード長 829 bytes
コンパイル時間 492 ms
コンパイル使用メモリ 82,580 KB
実行使用メモリ 139,524 KB
最終ジャッジ日時 2024-11-09 19:54:42
合計ジャッジ時間 15,848 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
54,144 KB
testcase_01 AC 37 ms
54,144 KB
testcase_02 AC 42 ms
61,056 KB
testcase_03 AC 51 ms
64,896 KB
testcase_04 AC 55 ms
68,096 KB
testcase_05 AC 38 ms
54,528 KB
testcase_06 AC 41 ms
60,928 KB
testcase_07 AC 37 ms
54,400 KB
testcase_08 AC 131 ms
82,868 KB
testcase_09 AC 127 ms
82,560 KB
testcase_10 AC 243 ms
85,760 KB
testcase_11 AC 370 ms
89,424 KB
testcase_12 AC 418 ms
94,768 KB
testcase_13 AC 521 ms
101,880 KB
testcase_14 AC 577 ms
109,320 KB
testcase_15 AC 716 ms
116,804 KB
testcase_16 AC 781 ms
121,552 KB
testcase_17 AC 735 ms
124,032 KB
testcase_18 AC 792 ms
127,232 KB
testcase_19 AC 752 ms
131,584 KB
testcase_20 AC 800 ms
134,180 KB
testcase_21 AC 813 ms
137,600 KB
testcase_22 AC 802 ms
139,524 KB
testcase_23 AC 871 ms
139,484 KB
testcase_24 AC 862 ms
139,200 KB
testcase_25 AC 425 ms
94,512 KB
testcase_26 AC 329 ms
89,368 KB
testcase_27 AC 248 ms
85,688 KB
testcase_28 AC 823 ms
128,488 KB
testcase_29 AC 766 ms
131,584 KB
testcase_30 AC 865 ms
139,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int, input().split())
A=[(0,0)]
D=[[0]*(N+1) for _ in range(N+1)]

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,y=A[i]
    xx,yy=A[j]
    D[i][j]=((x-xx)**2+(y-yy)**2)**.5


dp=[[[10**18]*(1<<N) for _ in range(K+1)] for i in range(N+1)]
from collections import deque
d=deque()
dp[0][K][0]=0

for bit in range(1<<N):
  for k in range(0,K+1): 
    for pre in range(N+1):
      if dp[pre][k][bit]==10**18:
        continue
      for nex in range(1,N+1):
        nxt=nex-1
        if (bit>>nxt)&1==0:
          if k!=0:
            dp[nex][k-1][bit|(1<<nxt)]=min(dp[nex][k-1][bit|(1<<nxt)],dp[pre][k][bit]+D[pre][nex])
            dp[0][K][bit|(1<<nxt)]=min(dp[0][K][bit|(1<<nxt)],dp[pre][k][bit]+D[pre][nxt+1]+D[nex][0])
  
c=dp[0][K][-1]
print(c)
0