結果

問題 No.2955 Pizza Delivery Plan
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-11-08 21:41:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 306 ms / 2,000 ms
コード長 679 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 82,432 KB
最終ジャッジ日時 2024-11-08 21:41:25
合計ジャッジ時間 7,768 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,096 KB
testcase_01 AC 38 ms
52,480 KB
testcase_02 AC 41 ms
52,608 KB
testcase_03 AC 46 ms
58,880 KB
testcase_04 AC 51 ms
58,752 KB
testcase_05 AC 40 ms
52,864 KB
testcase_06 AC 39 ms
52,736 KB
testcase_07 AC 39 ms
52,224 KB
testcase_08 AC 276 ms
82,176 KB
testcase_09 AC 278 ms
81,920 KB
testcase_10 AC 296 ms
81,920 KB
testcase_11 AC 306 ms
82,048 KB
testcase_12 AC 291 ms
81,920 KB
testcase_13 AC 276 ms
82,048 KB
testcase_14 AC 294 ms
81,920 KB
testcase_15 AC 266 ms
82,304 KB
testcase_16 AC 261 ms
82,176 KB
testcase_17 AC 257 ms
82,176 KB
testcase_18 AC 262 ms
81,920 KB
testcase_19 AC 285 ms
82,304 KB
testcase_20 AC 255 ms
82,048 KB
testcase_21 AC 268 ms
82,048 KB
testcase_22 AC 258 ms
82,048 KB
testcase_23 AC 260 ms
81,920 KB
testcase_24 AC 261 ms
81,920 KB
testcase_25 AC 298 ms
82,048 KB
testcase_26 AC 271 ms
82,304 KB
testcase_27 AC 272 ms
82,048 KB
testcase_28 AC 274 ms
82,432 KB
testcase_29 AC 281 ms
82,048 KB
testcase_30 AC 261 ms
82,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,K=map(int,input().split())
p=[tuple(map(int,input().split())) for i in range(n)]
X=10**20
d=lambda p1,p2:((p1[0]-p2[0])**2+(p1[1]-p2[1])**2)**0.5
q1=[[X]*n for i in range(1<<n)]
for i in range(n):
  q1[1<<i][i]=d((0,0),p[i])
for i in range(1<<n):
  for j in range(n):
    if (i>>j)&1:
      for k in range(n):
        if (i>>k)&1==0:
          q1[i|(1<<k)][k]=min(q1[i|(1<<k)][k],q1[i][j]+d(p[j],p[k]))
q2=[X]*(1<<n)
for i in range(1<<n):
  for j in range(n):
    if (i>>j)&1:
      q2[i]=min(q2[i],q1[i][j]+d((0,0),p[j]))
q3=[X]*(1<<n)
q3[0]=0
for s in range(1,1<<n):
  t=s
  while t>0:
    if t.bit_count()<=K:
      q3[s]=min(q3[s],q3[s^t]+q2[t])
    t=(t-1)&s
print(q3[-1])
0