結果

問題 No.2955 Pizza Delivery Plan
ユーザー vwxyzvwxyz
提出日時 2024-11-08 21:29:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 295 ms / 2,000 ms
コード長 1,078 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 82,816 KB
実行使用メモリ 80,000 KB
最終ジャッジ日時 2024-11-08 21:29:18
合計ジャッジ時間 7,535 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
52,480 KB
testcase_01 AC 42 ms
52,608 KB
testcase_02 AC 44 ms
52,992 KB
testcase_03 AC 53 ms
61,184 KB
testcase_04 AC 53 ms
61,056 KB
testcase_05 AC 44 ms
52,992 KB
testcase_06 AC 44 ms
52,992 KB
testcase_07 AC 43 ms
52,352 KB
testcase_08 AC 270 ms
80,000 KB
testcase_09 AC 266 ms
79,744 KB
testcase_10 AC 292 ms
79,872 KB
testcase_11 AC 295 ms
80,000 KB
testcase_12 AC 282 ms
79,744 KB
testcase_13 AC 283 ms
79,744 KB
testcase_14 AC 250 ms
79,616 KB
testcase_15 AC 250 ms
79,616 KB
testcase_16 AC 246 ms
79,744 KB
testcase_17 AC 244 ms
79,872 KB
testcase_18 AC 274 ms
79,744 KB
testcase_19 AC 245 ms
79,488 KB
testcase_20 AC 240 ms
79,872 KB
testcase_21 AC 239 ms
79,616 KB
testcase_22 AC 237 ms
79,616 KB
testcase_23 AC 239 ms
79,872 KB
testcase_24 AC 236 ms
79,744 KB
testcase_25 AC 261 ms
79,488 KB
testcase_26 AC 266 ms
79,872 KB
testcase_27 AC 266 ms
79,616 KB
testcase_28 AC 246 ms
79,872 KB
testcase_29 AC 242 ms
79,872 KB
testcase_30 AC 241 ms
79,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())
X,Y=[],[]
for i in range(N):
    x,y=map(int,input().split())
    X.append(x)
    Y.append(y)
def dist(i,j):
    if j==-1:
        i,j=j,i
    if i==-1:
        return (X[j]**2+Y[j]**2)**.5
    return ((X[i]-X[j])**2+(Y[i]-Y[j])**2)**.5
inf=1e20
dp=[[inf]*N for bit in range(1<<N)]
for bit in range(1<<N):
    for n in range(N):
        if bit&1<<n:
            if bit==1<<n:
                dp[bit][n]=min(dp[bit][n],dist(-1,n))
            else:
                for m in range(N):
                    if n==m:
                        continue
                    if not bit&1<<m:
                        continue
                    dp[bit][n]=min(dp[bit][n],dp[bit^1<<n][m]+dist(n,m))
DP=[inf]*(1<<N)
for bit in range(1<<N):
    for n in range(N):
        DP[bit]=min(DP[bit],dp[bit][n]+dist(n,-1))
DP[0]=0
dp=DP
DP=[inf]*(1<<N)
DP[0]=0
for bit in range(1<<N):
    subset=bit
    while subset:
        if subset.bit_count()<=K:
            DP[bit]=min(DP[bit],DP[subset^bit]+dp[subset])
        subset-=1
        subset&=bit
ans=DP[-1]
print(ans)
0