結果

問題 No.2955 Pizza Delivery Plan
ユーザー Tatsu_mrTatsu_mr
提出日時 2024-11-08 23:52:55
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 872 ms / 2,000 ms
コード長 2,674 bytes
コンパイル時間 3,487 ms
コンパイル使用メモリ 257,112 KB
実行使用メモリ 139,008 KB
最終ジャッジ日時 2024-11-08 23:53:13
合計ジャッジ時間 17,124 ms
ジャッジサーバーID
(参考情報)
judge3 / 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 181 ms
38,912 KB
testcase_09 AC 166 ms
39,040 KB
testcase_10 AC 226 ms
46,720 KB
testcase_11 AC 292 ms
54,400 KB
testcase_12 AC 343 ms
62,080 KB
testcase_13 AC 428 ms
69,888 KB
testcase_14 AC 450 ms
77,440 KB
testcase_15 AC 514 ms
85,120 KB
testcase_16 AC 586 ms
92,800 KB
testcase_17 AC 604 ms
100,480 KB
testcase_18 AC 696 ms
108,160 KB
testcase_19 AC 720 ms
115,968 KB
testcase_20 AC 780 ms
123,392 KB
testcase_21 AC 811 ms
131,200 KB
testcase_22 AC 869 ms
138,752 KB
testcase_23 AC 872 ms
138,752 KB
testcase_24 AC 849 ms
139,008 KB
testcase_25 AC 346 ms
62,080 KB
testcase_26 AC 294 ms
54,400 KB
testcase_27 AC 226 ms
46,720 KB
testcase_28 AC 677 ms
108,032 KB
testcase_29 AC 709 ms
115,840 KB
testcase_30 AC 871 ms
138,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define For(i, a, b) for(int i = a; i < b; i++)
#define rep(i, n) For(i, 0, n)
#define rFor(i, a, b) for(int i = a; i >= b; i--)
#define ALL(v) (v).begin(), (v).end()
#define rALL(v) (v).rbegin(), (v).rend()
using namespace std;

using lint = long long;
using ld = long double;

int INF = 2000000000;
lint LINF = 1000000000000000000;

struct Point {
    ld x, y;
};

ld dist(Point a, Point b) {
    ld dx = a.x - b.x, dy = a.y - b.y;
    return sqrt(dx * dx + dy * dy);
}

int main() {
    int n, K;
    cin >> n >> K;
    n++;
    vector<Point> p(n);
    p[0] = {0.0, 0.0};
    For(i, 1, n) {
        cin >> p[i].x >> p[i].y;
    }
    vector<vector<vector<ld>>> dp(1 << n, vector<vector<ld>>(n, vector<ld>(K + 1, 1000000000000000000)));
    dp[1][0][K] = 0.0;
    rep(s, (1 << n)) {
        rFor(i, n - 1, 0) {
            rep(j, K + 1) {
                if (i == 0 && j != K) {
                    continue;
                }
                rep(ni, n) {
                    if (i == ni) {
                        continue;
                    }
                    if (ni == 0) {
                        ld d = dist(p[i], p[ni]);
                        /*if (dp[s][0][K] > dp[s][i][j] + d) {
                            cout << s << " " << i << " " << j << " -> " << s << " " << 0 << " " << K << endl;
                            dp[s][0][K] = dp[s][i][j] + d;
                            cout << dp[s][0][K] << endl;
                        }*/
                        dp[s][0][K] = min(dp[s][0][K], dp[s][i][j] + d);
                    } else {
                        if (s & (1 << ni) || j == 0) {
                            continue;
                        }
                        int ns = s | (1 << ni);
                        ld d = dist(p[i], p[ni]);
                        /*
                        if (dp[ns][ni][j - 1] > dp[s][i][j] + d) {
                            cout << s << " " << i << " " << j << " -> " << ns << " " << ni << " " << j - 1 << endl;
                            dp[ns][ni][j - 1] = dp[s][i][j] + d;
                            cout << dp[ns][ni][j - 1] << endl;
                        }*/
                        dp[ns][ni][j - 1] = min(dp[ns][ni][j - 1], dp[s][i][j] + d);
                    }
                }
            }
        }
    }
    /*
    rep(s, (1 << n)) rep(i, n) rep(j, K + 1) {
        if (dp[s][i][j] != 2000000000) {
            cout << s << " " << i << " " << j << " " << dp[s][i][j] << endl;
        }
    }
    */
    ld ans = 1000000000000000000;
    rep(j, K + 1) {
        ans = min(ans, dp[(1 << n) - 1][0][j]);
    }
    cout << fixed << setprecision(10) << ans << endl;
}
0