結果

問題 No.2955 Pizza Delivery Plan
ユーザー ニックネームニックネーム
提出日時 2024-11-08 22:12:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,784 ms / 2,000 ms
コード長 705 bytes
コンパイル時間 214 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 161,656 KB
最終ジャッジ日時 2024-11-08 22:13:31
合計ジャッジ時間 28,084 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,736 KB
testcase_01 AC 68 ms
52,480 KB
testcase_02 AC 45 ms
53,376 KB
testcase_03 AC 58 ms
62,208 KB
testcase_04 AC 79 ms
69,376 KB
testcase_05 AC 48 ms
53,376 KB
testcase_06 AC 46 ms
53,632 KB
testcase_07 AC 43 ms
52,608 KB
testcase_08 AC 534 ms
109,932 KB
testcase_09 AC 526 ms
110,592 KB
testcase_10 AC 605 ms
115,144 KB
testcase_11 AC 724 ms
120,224 KB
testcase_12 AC 747 ms
125,652 KB
testcase_13 AC 901 ms
130,020 KB
testcase_14 AC 944 ms
133,140 KB
testcase_15 AC 1,024 ms
138,092 KB
testcase_16 AC 1,129 ms
142,424 KB
testcase_17 AC 1,211 ms
145,724 KB
testcase_18 AC 1,364 ms
148,696 KB
testcase_19 AC 1,388 ms
151,488 KB
testcase_20 AC 1,486 ms
155,520 KB
testcase_21 AC 1,673 ms
158,764 KB
testcase_22 AC 1,784 ms
160,796 KB
testcase_23 AC 1,773 ms
161,548 KB
testcase_24 AC 1,747 ms
161,656 KB
testcase_25 AC 781 ms
123,596 KB
testcase_26 AC 714 ms
120,480 KB
testcase_27 AC 613 ms
115,308 KB
testcase_28 AC 1,360 ms
149,336 KB
testcase_29 AC 1,384 ms
152,992 KB
testcase_30 AC 1,753 ms
160,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k = map(int,input().split())
xy = [tuple(map(int,input().split())) for _ in range(n)]+[(0,0)]
dp = [[[10**18]*(k+1) for _ in range(n+1)] for _ in range(1<<n)]
dp[0][n][k] = 0
for s in range(1<<n):
    for i in range(n+1):
        if i<n and s>>i&1==0: continue
        xi,yi = xy[i]
        for j in range(n+1):
            xj,yj = xy[j]; d = ((xi-xj)**2+(yi-yj)**2)**0.5
            if j<n:
                if s>>j&1==1: continue
                for l in range(k):
                    t = s^1<<j
                    dp[t][j][l] = min(dp[t][j][l],dp[s][i][l+1]+d)
            else:
                for l in range(k):
                    dp[s][j][k] = min(dp[s][j][k],dp[s][i][l]+d)
print(dp[-1][-1][-1])
0