結果

問題 No.2955 Pizza Delivery Plan
ユーザー Tatsu_mrTatsu_mr
提出日時 2024-11-08 23:10:09
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,656 bytes
コンパイル時間 2,875 ms
コンパイル使用メモリ 255,660 KB
実行使用メモリ 139,008 KB
最終ジャッジ日時 2024-11-08 23:10:27
合計ジャッジ時間 16,138 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

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, 2000000000)));
    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 = 2000000000;
    rep(j, K + 1) {
        ans = min(ans, dp[(1 << n) - 1][0][j]);
    }
    cout << fixed << setprecision(10) << ans << endl;
}
0