結果
問題 | No.2955 Pizza Delivery Plan |
ユーザー | 👑 binap |
提出日時 | 2024-05-28 14:53:13 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 969 bytes |
コンパイル時間 | 2,730 ms |
コンパイル使用メモリ | 210,228 KB |
実行使用メモリ | 66,048 KB |
最終ジャッジ日時 | 2024-10-25 19:23:02 |
合計ジャッジ時間 | 24,390 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
6,816 KB |
testcase_06 | WA | - |
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 | - |
ソースコード
#include<bits/stdc++.h> #define rep(i,n) for(int i=0;i<n;i++) using namespace std; template<typename T> void chmin(T& a, T b){a = min(a, b);} const long double INF = 80000000000; int main(){ int N, K; cin >> N >> K; vector<int> x(N + 1), y(N + 1); rep(i, N) cin >> x[i] >> y[i]; x[N] = 0; y[N] = 0; auto dist = [&](int i, int j){ long double res = (x[i] - x[j]) * (x[i] - x[j]) + (y[i] - y[j]) * (y[i] - y[j]); return sqrtl(res); }; vector<vector<vector<long double>>> dp(N + 1, vector<vector<long double>>(K + 1, vector<long double>(1 << N, INF))); dp[N][K][0] = 0; rep(bit, 1 << N){ rep(from, N + 1){ for(int k = 1; k <= K; k++){ rep(to, N){ if((bit >> to) && 1) continue; chmin(dp[to][k - 1][bit ^ (1 << to)], dp[from][k][bit] + dist(from, to)); } } for(int k = 0; k <= K; k++) chmin(dp[N][K][bit], dp[from][k][bit] + dist(from, N)); } } cout << setprecision(15); cout << dp[N][K][(1 << N) - 1] << "\n"; return 0; }