結果
問題 | No.2955 Pizza Delivery Plan |
ユーザー | vjudge1 |
提出日時 | 2024-11-21 10:50:31 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,352 bytes |
コンパイル時間 | 2,185 ms |
コンパイル使用メモリ | 202,488 KB |
実行使用メモリ | 61,568 KB |
最終ジャッジ日時 | 2024-11-21 10:50:37 |
合計ジャッジ時間 | 6,263 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | WA | - |
testcase_06 | AC | 2 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 | AC | 114 ms
61,440 KB |
testcase_16 | AC | 123 ms
61,568 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 187 ms
61,568 KB |
testcase_22 | AC | 201 ms
61,440 KB |
testcase_23 | AC | 199 ms
61,568 KB |
testcase_24 | AC | 199 ms
61,312 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | AC | 200 ms
61,440 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; const int MAXN = 20, MAXX = (1 << 15); int k, n; double ans = 1e18, dp[MAXN][MAXN][MAXX]; struct E{ int x, y; } a[MAXN]; double C(int x, int y, int _x, int _y){ return sqrt(1ll * (x - _x) * (x - _x) + 1ll * (y - _y) * (y - _y)); } int main(){ cin >> n >> k; a[0] = {0, 0}; for(int i = 1; i <= n; i++){ cin >> a[i].x >> a[i].y; } for(int i = 0; i <= n; i++){ for(int j = 0; j <= n; j++){ for(int k = 0; k < (1 << (n + 1)); k++){ dp[i][j][k] = 1e18; } } } dp[0][k][1] = 0; for(int j = 1; j < (1 << (n + 1)); j++){ for(int i = 1; i <= n; i++){ if((j >> i & 1)) continue; for(int kk = 0; kk <= n; kk++){ if(!(j >> kk & 1)) continue; for(int sy = 0; sy <= k; sy++){ if(!sy){ dp[i][k][j | (1 << i)] = min(dp[i][k][j | (1 << i)], dp[kk][sy][j] + C(a[i].x, a[i].y, 0, 0) + C(0, 0, a[kk].x, a[kk].y)); } else { dp[i][sy - 1][j | (1 << i)] = min(dp[i][sy - 1][j | (1 << i)], dp[kk][sy][j] + C(a[i].x, a[i].y, a[kk].x, a[kk].y)); } } } } } for(int j = 1; j <= n; j++){ for(int i = 0; i <= k; i++){ ans = min(ans, dp[j][i][(1 << (n + 1)) - 1] + C(0, 0, a[j].x, a[j].y)); } } cout << fixed << setprecision(11) << ans; return 0; }