結果

問題 No.2955 Pizza Delivery Plan
ユーザー hato336hato336
提出日時 2024-11-08 22:06:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,991 ms / 2,000 ms
コード長 933 bytes
コンパイル時間 405 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 154,872 KB
最終ジャッジ日時 2024-11-08 22:06:39
合計ジャッジ時間 28,822 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
52,352 KB
testcase_01 AC 44 ms
52,864 KB
testcase_02 AC 51 ms
59,520 KB
testcase_03 AC 66 ms
66,048 KB
testcase_04 AC 97 ms
76,672 KB
testcase_05 AC 45 ms
53,760 KB
testcase_06 AC 52 ms
59,520 KB
testcase_07 AC 45 ms
52,736 KB
testcase_08 AC 386 ms
107,776 KB
testcase_09 AC 402 ms
107,392 KB
testcase_10 AC 512 ms
111,468 KB
testcase_11 AC 601 ms
115,824 KB
testcase_12 AC 714 ms
119,508 KB
testcase_13 AC 848 ms
125,708 KB
testcase_14 AC 961 ms
129,388 KB
testcase_15 AC 948 ms
135,144 KB
testcase_16 AC 1,177 ms
136,748 KB
testcase_17 AC 1,218 ms
140,308 KB
testcase_18 AC 1,420 ms
143,700 KB
testcase_19 AC 1,580 ms
148,136 KB
testcase_20 AC 1,585 ms
149,408 KB
testcase_21 AC 1,736 ms
153,552 KB
testcase_22 AC 1,973 ms
154,540 KB
testcase_23 AC 1,940 ms
154,844 KB
testcase_24 AC 1,967 ms
154,516 KB
testcase_25 AC 684 ms
120,688 KB
testcase_26 AC 635 ms
116,148 KB
testcase_27 AC 503 ms
111,236 KB
testcase_28 AC 1,417 ms
143,960 KB
testcase_29 AC 1,595 ms
148,240 KB
testcase_30 AC 1,991 ms
154,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k = map(int,input().split())
a = [list(map(int,input().split())) for i in range(n)]
dp = [[[10**18 for h in range(k+1)] for i in range(n)] for j in range(1<<n)]
import math
def dist(a,b,c,d):
    return math.sqrt((a-c)**2 + (b-d)**2)
for i in range(n):
    dp[1<<i][i][k-1] = dist(a[i][0],a[i][1],0,0)
for s in range(1<<n):
    for i in range(n):
        if(s >> i) & 1 == 0:
            continue
        for j in range(n):
            if(s >> j) & 1 == 1:
                continue
            for l in range(k+1):
                if l != 0:
                    dp[s+(1<<j)][j][l-1] = min(dp[s+(1<<j)][j][l-1],dp[s][i][l] + dist(a[i][0],a[i][1],a[j][0],a[j][1]))
                dp[s+(1<<j)][j][k-1] = min(dp[s+(1<<j)][j][k-1],dp[s][i][l] + dist(a[i][0],a[i][1],0,0) + dist(0,0,a[j][0],a[j][1]))
ans = 10**18
for i in range(n):
    for j in range(k+1):
        ans = min(ans,dp[(1<<n)-1][i][j]+dist(0,0,a[i][0],a[i][1]))
print(ans)
0