結果

問題 No.2955 Pizza Delivery Plan
ユーザー 👑 rin204rin204
提出日時 2024-11-08 21:34:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 529 ms / 2,000 ms
コード長 1,266 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 85,248 KB
最終ジャッジ日時 2024-11-08 21:34:35
合計ジャッジ時間 9,023 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,480 KB
testcase_01 AC 42 ms
52,736 KB
testcase_02 AC 43 ms
52,736 KB
testcase_03 AC 49 ms
59,136 KB
testcase_04 AC 49 ms
59,008 KB
testcase_05 AC 44 ms
52,864 KB
testcase_06 AC 48 ms
52,608 KB
testcase_07 AC 43 ms
52,352 KB
testcase_08 AC 529 ms
84,992 KB
testcase_09 AC 492 ms
84,480 KB
testcase_10 AC 378 ms
84,480 KB
testcase_11 AC 357 ms
84,608 KB
testcase_12 AC 330 ms
84,608 KB
testcase_13 AC 319 ms
84,736 KB
testcase_14 AC 288 ms
84,608 KB
testcase_15 AC 296 ms
85,248 KB
testcase_16 AC 279 ms
84,608 KB
testcase_17 AC 302 ms
84,480 KB
testcase_18 AC 277 ms
84,352 KB
testcase_19 AC 264 ms
84,864 KB
testcase_20 AC 258 ms
84,608 KB
testcase_21 AC 277 ms
84,736 KB
testcase_22 AC 269 ms
84,480 KB
testcase_23 AC 270 ms
84,352 KB
testcase_24 AC 254 ms
84,480 KB
testcase_25 AC 313 ms
84,992 KB
testcase_26 AC 360 ms
84,608 KB
testcase_27 AC 386 ms
84,480 KB
testcase_28 AC 292 ms
84,608 KB
testcase_29 AC 275 ms
84,736 KB
testcase_30 AC 264 ms
84,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def popcount32(x):
    x = x - ((x >> 1) & 0x55555555)
    x = (x & 0x33333333) + ((x >> 2) & 0x33333333)
    x = (x + (x >> 4)) & 0x0F0F0F0F
    x += x >> 8
    x += x >> 16
    return x & 0x0000003F


n, k = map(int, input().split())
XY = [list(map(int, input().split())) for _ in range(n)]

dist = [[1 << 60] * n for _ in range(1 << n)]
for i in range(n):
    x, y = XY[i]
    d = (x**2 + y**2) ** 0.5
    dist[1 << i][i] = d

for bit in range(1, 1 << n):
    for i in range(n):
        if not (bit >> i & 1):
            continue
        for j in range(n):
            if bit >> j & 1:
                continue
            d = ((XY[i][0] - XY[j][0]) ** 2 + (XY[i][1] - XY[j][1]) ** 2) ** 0.5
            dist[bit | 1 << j][j] = min(dist[bit | 1 << j][j], dist[bit][i] + d)

D = [0] * (1 << n)
for bit in range(1, 1 << n):
    mi = 1 << 60
    if popcount32(bit) > k:
        D[bit] = mi
        continue
    for i in range(n):
        if bit >> i & 1:
            d = dist[bit][i] + (XY[i][0] ** 2 + XY[i][1] ** 2) ** 0.5
            mi = min(mi, d)
    D[bit] = mi

dp = [1 << 60] * (1 << n)
dp[0] = 0

for bit in range(1, 1 << n):
    sub = bit
    while sub:
        dp[bit] = min(dp[bit], dp[bit ^ sub] + D[sub])
        sub = (sub - 1) & bit

print(dp[-1])
0