結果

問題 No.2955 Pizza Delivery Plan
ユーザー t98slidert98slider
提出日時 2024-11-10 15:00:57
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 11 ms / 2,000 ms
コード長 1,682 bytes
コンパイル時間 2,279 ms
コンパイル使用メモリ 208,624 KB
実行使用メモリ 5,632 KB
最終ジャッジ日時 2024-11-10 15:01:02
合計ジャッジ時間 3,654 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 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 10 ms
5,376 KB
testcase_09 AC 9 ms
5,376 KB
testcase_10 AC 9 ms
5,376 KB
testcase_11 AC 11 ms
5,248 KB
testcase_12 AC 11 ms
5,504 KB
testcase_13 AC 10 ms
5,376 KB
testcase_14 AC 10 ms
5,504 KB
testcase_15 AC 11 ms
5,376 KB
testcase_16 AC 10 ms
5,248 KB
testcase_17 AC 10 ms
5,504 KB
testcase_18 AC 9 ms
5,248 KB
testcase_19 AC 9 ms
5,376 KB
testcase_20 AC 9 ms
5,376 KB
testcase_21 AC 8 ms
5,504 KB
testcase_22 AC 8 ms
5,248 KB
testcase_23 AC 8 ms
5,376 KB
testcase_24 AC 8 ms
5,504 KB
testcase_25 AC 10 ms
5,504 KB
testcase_26 AC 10 ms
5,632 KB
testcase_27 AC 10 ms
5,248 KB
testcase_28 AC 9 ms
5,632 KB
testcase_29 AC 9 ms
5,504 KB
testcase_30 AC 8 ms
5,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int n, k;
    cin >> n >> k;
    vector<pair<int,int>> a(n);
    for(auto &&[x, y] : a) cin >> x >> y;
    vector<double> dp(1 << n, 1ll << 60);
    array<double, 14> tmp;
    tmp.fill(1ll << 60);
    vector<array<double,14>> dp2(1 << n, tmp);
    auto calc = [&](int x1, int y1, int x2, int y2){
        ll dx = x2 - x1, dy = y2 - y1;
        return sqrt(dx * dx + dy * dy);
    };
    array<array<double,15>,15> T;
    for(int i = 0; i < n; i++){
        auto [x1, y1] = a[i];
        T[i][14] = T[14][i] = calc(0, 0, x1, y1);
        for(int j = i + 1; j < n; j++){
            auto [x2, y2] = a[j];
            T[i][j] = T[j][i] = calc(x1, y1, x2, y2);
        }
    }
    for(int i = 0; i < n; i++){
        dp2[1 << i][i] = T[i][14];
    }
    for(int S = 1; S < (1 << n); S++){
        int popcnt = __builtin_popcount(S);
        if(popcnt <= k){
            double mn = 1ll << 60;
            for(int i = 0; i < n; i++){
                if(~S >> i & 1) continue;
                mn = min(mn, dp2[S][i] + T[i][14]);
                if(popcnt < k){
                    for(int j = 0; j < n; j++){
                        if(S >> j & 1) continue;
                        dp2[S | (1 << j)][j] = min(dp2[S | (1 << j)][j], dp2[S][i] + T[i][j]);
                    }
                }
            }
            dp[S] = mn;
        }else{
            for(int T = (S - 1) & S; T > 0; T = (T - 1) & S){
                dp[S] = min(dp[S], dp[T] + dp[S ^ T]);
            }
        }
    }
    cout << fixed << setprecision(15) << dp.back() << '\n';
}
0