結果
問題 | No.2955 Pizza Delivery Plan |
ユーザー | 👑 binap |
提出日時 | 2024-05-28 16:29:27 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,090 bytes |
コンパイル時間 | 2,526 ms |
コンパイル使用メモリ | 211,148 KB |
実行使用メモリ | 71,424 KB |
最終ジャッジ日時 | 2024-10-25 19:23:19 |
合計ジャッジ時間 | 29,458 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | AC | 2 ms
6,816 KB |
testcase_06 | AC | 2 ms
6,816 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 | TLE | - |
testcase_22 | WA | - |
testcase_23 | TLE | - |
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; vector<vector<long double>> dist(N + 1, vector<long double>(N + 1)); rep(i, N + 1) rep(j, N + 1){ long double res = (x[i] - x[j]) * (x[i] - x[j]) + (y[i] - y[j]) * (y[i] - y[j]); dist[i][j] = sqrtl(res); } vector<vector<vector<long double>>> dp(1 << N, vector<vector<long double>>(N + 1, vector<long double>(K + 1, INF))); dp[0][N][K] = 0; rep(bit, 1 << N){ rep(from, N + 1){ if(from < N) if((~bit >> from) & 1) continue; for(int k = 1; k <= K; k++){ rep(to, N){ if((bit >> to) & 1) continue; chmin(dp[bit | (1 << to)][to][k - 1], dp[bit][from][k] + dist[from][to]); } } for(int k = 0; k <= K; k++) chmin(dp[bit][N][K], dp[bit][from][k] + dist[from][N]); } } cout << setprecision(15); cout << dp[(1 << N) - 1][N][K] << "\n"; return 0; }