結果

問題 No.2955 Pizza Delivery Plan
ユーザー eve__fuyukieve__fuyuki
提出日時 2024-11-08 23:28:24
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 371 ms / 2,000 ms
コード長 1,466 bytes
コンパイル時間 2,234 ms
コンパイル使用メモリ 211,472 KB
実行使用メモリ 63,488 KB
最終ジャッジ日時 2024-11-08 23:28:48
合計ジャッジ時間 7,995 ms
ジャッジサーバーID
(参考情報)
judge4 / 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 46 ms
16,640 KB
testcase_09 AC 39 ms
16,640 KB
testcase_10 AC 64 ms
20,352 KB
testcase_11 AC 87 ms
23,808 KB
testcase_12 AC 112 ms
27,520 KB
testcase_13 AC 142 ms
31,104 KB
testcase_14 AC 159 ms
34,688 KB
testcase_15 AC 184 ms
38,272 KB
testcase_16 AC 208 ms
41,856 KB
testcase_17 AC 244 ms
45,440 KB
testcase_18 AC 251 ms
48,896 KB
testcase_19 AC 294 ms
52,608 KB
testcase_20 AC 305 ms
55,936 KB
testcase_21 AC 351 ms
59,648 KB
testcase_22 AC 371 ms
63,488 KB
testcase_23 AC 349 ms
63,232 KB
testcase_24 AC 354 ms
63,232 KB
testcase_25 AC 120 ms
27,392 KB
testcase_26 AC 90 ms
23,936 KB
testcase_27 AC 66 ms
20,224 KB
testcase_28 AC 275 ms
49,024 KB
testcase_29 AC 275 ms
52,608 KB
testcase_30 AC 351 ms
63,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

void fast_io() {
	ios_base::sync_with_stdio(false);
	cin.tie(nullptr);
}

int main() {
	fast_io();
	int n, k;
	cin >> n >> k;
	vector<pair<int, int>> xy(n);
	for (int i = 0; i < n; i++) {
		cin >> xy[i].first >> xy[i].second;
	}
	using ld = long double;
	vector<vector<ld>> dist(n, vector<ld>(n));
	vector<ld> dist_org(n);
	for (int i = 0; i < n; i++) {
		dist_org[i] = hypotl(xy[i].first, xy[i].second);
		for (int j = 0; j < n; j++) {
			dist[i][j] =
				hypotl(xy[i].first - xy[j].first, xy[i].second - xy[j].second);
		}
	}
	vector<vector<vector<ld>>> dp(1 << n,
								  vector<vector<ld>>(n, vector<ld>(k, 9e18)));
	for (int i = 0; i < n; i++) {
		dp[1 << i][i][k - 1] = dist_org[i];
	}
	for (int st = 0; st < (1 << n); st++) {
		for (int cur = 0; cur < n; cur++) {
			for (int rem = 0; rem < k; rem++) {
				for (int nxt = 0; nxt < n; nxt++) {
					if (st & (1 << nxt)) continue;
					if (rem > 0) {
						dp[st | (1 << nxt)][nxt][rem - 1] =
							min(dp[st | (1 << nxt)][nxt][rem - 1],
								dp[st][cur][rem] + dist[cur][nxt]);
					}
					dp[st | (1 << nxt)][nxt][k - 1] =
						min(dp[st | (1 << nxt)][nxt][k - 1],
							dp[st][cur][rem] + dist_org[nxt] + dist_org[cur]);
				}
			}
		}
	}
	ld ans = 9e18;
	for (int cur = 0; cur < n; cur++) {
		for (int rem = 0; rem < k; rem++) {
			ans = min(ans, dp[(1 << n) - 1][cur][rem] + dist_org[cur]);
		}
	}
	cout << setprecision(16) << fixed << ans << endl;
}
0