結果

問題 No.2955 Pizza Delivery Plan
ユーザー zawakasuzawakasu
提出日時 2024-11-08 22:12:40
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 62 ms / 2,000 ms
コード長 2,588 bytes
コンパイル時間 1,555 ms
コンパイル使用メモリ 124,156 KB
実行使用メモリ 7,836 KB
最終ジャッジ日時 2024-11-08 22:13:03
合計ジャッジ時間 3,785 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 38 ms
7,708 KB
testcase_09 AC 38 ms
7,708 KB
testcase_10 AC 41 ms
7,576 KB
testcase_11 AC 46 ms
7,836 KB
testcase_12 AC 51 ms
7,832 KB
testcase_13 AC 56 ms
7,704 KB
testcase_14 AC 58 ms
7,580 KB
testcase_15 AC 61 ms
7,832 KB
testcase_16 AC 61 ms
7,708 KB
testcase_17 AC 62 ms
7,704 KB
testcase_18 AC 61 ms
7,708 KB
testcase_19 AC 61 ms
7,708 KB
testcase_20 AC 61 ms
7,580 KB
testcase_21 AC 60 ms
7,708 KB
testcase_22 AC 61 ms
7,712 KB
testcase_23 AC 62 ms
7,576 KB
testcase_24 AC 61 ms
7,832 KB
testcase_25 AC 51 ms
7,576 KB
testcase_26 AC 45 ms
7,576 KB
testcase_27 AC 39 ms
7,484 KB
testcase_28 AC 60 ms
7,704 KB
testcase_29 AC 61 ms
7,704 KB
testcase_30 AC 61 ms
7,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <iomanip>
#include <cassert>
#include <vector>
#include <cmath>
#include <bit>
#include <random>

int main() {
    std::cin.tie(nullptr)->sync_with_stdio(false);
    
    std::mt19937 mt{std::random_device{}()};
    // while (true) {
        int N, K;
        // N = mt() % 5 + 1;
        // K = mt() % N + 1;
        std::cin >> N >> K;
        std::vector<int> X(N), Y(N);
        // std::cerr << N << ' ' << K << std::endl;
        // for (int i{} ; i < N ; i++) {
        //     X[i] = mt() % (int)2e9 - 1e9;
        //     Y[i] = mt() % (int)2e9 - 1e9;
        //     std::cerr << X[i] << ' ' << Y[i] << std::endl;
        // }
        for (int i{} ; i < N ; i++) std::cin >> X[i] >> Y[i];
        const long double INF{(long double)1e18};
        std::vector dp(N, std::vector<long double>(1 << N, INF));
        for (int i{} ; i < N ; i++) {
            dp[i][1 << i] = sqrtl((long double)X[i] * X[i] + (long double)Y[i] * Y[i]);
        }
        for (int bit{} ; bit < (1 << N) ; bit++) {
            for (int s{} ; s < N ; s++) if (bit & (1 << s)) {
                for (int t{} ; t < N ; t++) if (!(bit & (1 << t))) {
                    if (dp[s][bit] > 1e15) continue;
                    int dx{X[s] - X[t]}, dy{Y[s] - Y[t]};
                    dp[t][bit | (1 << t)] = std::min(dp[t][bit | (1 << t)], dp[s][bit] + sqrtl((long double)dx * dx + (long double)dy * dy));
                    // std::cout << s << ' ' << bit << " -> " << t << ' ' << dp[s][bit] << std::endl;
                }
            }
        }
        std::vector<long double> cost(1 << N, INF);
        cost[0] = 0;
        for (int bit{} ; bit < (1 << N) ; bit++) for (int i{} ; i < N ; i++) if (bit & (1 << i)) {
            if (dp[i][bit] > 1e15) continue;
            cost[bit] = std::min(cost[bit], dp[i][bit] + sqrtl((long double)X[i] * X[i] + (long double)Y[i] * Y[i]));
        }
        for (int bit{} ; bit < (1 << N) ; bit++) assert(cost[bit] < 1e15);
        std::vector<long double> ep(1 << N, INF);
        ep[0] = 0;
        int all{(1 << N) - 1};
        for (int bit{} ; bit < (1 << N) ; bit++) {
            // assert(ep[bit] < 1e15);
            int can{all ^ bit};
            for (int mask{can} ; mask ; mask = (mask - 1) & can) {
                if ((int)std::popcount((unsigned)mask) <= K) {
                    assert((bit & mask) == 0);
                    ep[bit | mask] = std::min(ep[bit | mask], ep[bit] + cost[mask]);
                }
            }
        }
        std::cout << std::fixed << std::setprecision(8) << ep[all] << '\n';
    // }
}
0