結果

問題 No.2955 Pizza Delivery Plan
ユーザー askr58askr58
提出日時 2024-11-08 23:14:21
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 276 ms / 2,000 ms
コード長 1,024 bytes
コンパイル時間 5,778 ms
コンパイル使用メモリ 314,240 KB
実行使用メモリ 35,328 KB
最終ジャッジ日時 2024-11-08 23:14:32
合計ジャッジ時間 10,564 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 12 ms
7,936 KB
testcase_09 AC 11 ms
7,680 KB
testcase_10 AC 36 ms
9,856 KB
testcase_11 AC 63 ms
11,904 KB
testcase_12 AC 89 ms
14,080 KB
testcase_13 AC 130 ms
16,128 KB
testcase_14 AC 150 ms
18,432 KB
testcase_15 AC 191 ms
20,480 KB
testcase_16 AC 208 ms
22,784 KB
testcase_17 AC 236 ms
24,704 KB
testcase_18 AC 236 ms
26,880 KB
testcase_19 AC 238 ms
28,800 KB
testcase_20 AC 241 ms
30,976 KB
testcase_21 AC 267 ms
33,152 KB
testcase_22 AC 252 ms
35,328 KB
testcase_23 AC 255 ms
35,328 KB
testcase_24 AC 253 ms
35,328 KB
testcase_25 AC 88 ms
14,208 KB
testcase_26 AC 63 ms
11,904 KB
testcase_27 AC 37 ms
9,984 KB
testcase_28 AC 234 ms
26,880 KB
testcase_29 AC 276 ms
28,800 KB
testcase_30 AC 253 ms
35,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
using ll=long long;

int main()
{
    int n,k;
    cin>>n>>k;
    vector<double> x(n+1),y(n+1);
    for(int i=0;i<n;i++){
        cin>>x[i+1]>>y[i+1];
    }
    auto dist=[&](int i,int j)->double{
        return sqrtf64((x[i]-x[j])*(x[i]-x[j])+(y[i]-y[j])*(y[i]-y[j]));
    };  
    vector<vector<vector<double>>> dp(n+1,vector<vector<double>>(k+1,vector<double>(1<<n,-1)));

    auto rec=[&](auto rec,int v,int m,int s)->double{
        if(dp[v][m][s]!=-1)return dp[v][m][s];
        else if((s+1)==1<<n)return dp[v][m][s]=dist(v,0);
        double res=1e40;
        if(v!=0)res=rec(rec,0,k,s)+dist(v,0);
        if(m>0){
            for(int i=1;i<=n;i++){
                int u=i-1;
                if(s>>u&1)continue;
                res=min(res,rec(rec,i,m-1,s|(1<<u))+dist(v,i));
            }
        }
        return dp[v][m][s]=res;
    };
    cout<<fixed<<setprecision(10);
    cout<<rec(rec,0,k,0)<<endl;
    return 0;
}
0