結果

問題 No.2955 Pizza Delivery Plan
ユーザー 👑 binapbinap
提出日時 2024-05-28 19:08:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 738 ms / 2,000 ms
コード長 1,343 bytes
コンパイル時間 360 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 124,724 KB
最終ジャッジ日時 2024-10-25 19:33:01
合計ジャッジ時間 13,361 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,480 KB
testcase_01 AC 39 ms
53,764 KB
testcase_02 AC 47 ms
62,276 KB
testcase_03 AC 53 ms
63,888 KB
testcase_04 AC 55 ms
65,732 KB
testcase_05 AC 38 ms
53,140 KB
testcase_06 AC 46 ms
61,064 KB
testcase_07 AC 39 ms
54,792 KB
testcase_08 AC 196 ms
99,240 KB
testcase_09 AC 200 ms
99,116 KB
testcase_10 AC 255 ms
101,312 KB
testcase_11 AC 313 ms
103,260 KB
testcase_12 AC 339 ms
105,384 KB
testcase_13 AC 411 ms
107,252 KB
testcase_14 AC 425 ms
109,144 KB
testcase_15 AC 515 ms
110,784 KB
testcase_16 AC 502 ms
112,900 KB
testcase_17 AC 537 ms
114,592 KB
testcase_18 AC 595 ms
116,688 KB
testcase_19 AC 710 ms
118,780 KB
testcase_20 AC 659 ms
120,400 KB
testcase_21 AC 669 ms
123,052 KB
testcase_22 AC 721 ms
124,724 KB
testcase_23 AC 722 ms
124,636 KB
testcase_24 AC 696 ms
124,560 KB
testcase_25 AC 339 ms
105,180 KB
testcase_26 AC 329 ms
102,932 KB
testcase_27 AC 267 ms
101,052 KB
testcase_28 AC 570 ms
116,688 KB
testcase_29 AC 738 ms
118,996 KB
testcase_30 AC 713 ms
124,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import math

INF = 8000000000000000.0

def main():
    input = sys.stdin.read
    data = input().split()
    
    N = int(data[0])
    K = int(data[1])
    
    x = [0] * (N + 1)
    y = [0] * (N + 1)
    
    index = 2
    for i in range(N):
        x[i] = int(data[index])
        y[i] = int(data[index + 1])
        index += 2
    
    x[N] = 0
    y[N] = 0
    
    dist = [[0] * (N + 1) for _ in range(N + 1)]
    for i in range(N + 1):
        for j in range(N + 1):
            res = (x[i] - x[j]) ** 2 + (y[i] - y[j]) ** 2
            dist[i][j] = math.sqrt(res)
    
    dp = [[[INF] * (K + 1) for _ in range(N + 1)] for _ in range(1 << N)]
    dp[0][N][K] = 0.0
    
    for bit in range(1 << N):
        for from_idx in range(N + 1):
            if from_idx < N and not (bit >> from_idx) & 1:
                continue
            for k in range(1, K + 1):
                for to in range(N):
                    if (bit >> to) & 1:
                        continue
                    dp[bit | (1 << to)][to][k - 1] = min(dp[bit | (1 << to)][to][k - 1], dp[bit][from_idx][k] + dist[from_idx][to])
            for k in range(K + 1):
                dp[bit][N][K] = min(dp[bit][N][K], dp[bit][from_idx][k] + dist[from_idx][N])
    
    print("{:.15f}".format(dp[(1 << N) - 1][N][K]))

if __name__ == "__main__":
    main()
0