結果

問題 No.2955 Pizza Delivery Plan
ユーザー 👑 binapbinap
提出日時 2024-05-28 16:43:56
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 211 ms / 2,000 ms
コード長 1,101 bytes
コンパイル時間 2,742 ms
コンパイル使用メモリ 212,148 KB
実行使用メモリ 71,296 KB
最終ジャッジ日時 2024-10-25 19:23:18
合計ジャッジ時間 6,586 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 48 ms
21,376 KB
testcase_09 AC 47 ms
21,248 KB
testcase_10 AC 61 ms
25,088 KB
testcase_11 AC 73 ms
29,056 KB
testcase_12 AC 86 ms
32,832 KB
testcase_13 AC 97 ms
36,480 KB
testcase_14 AC 111 ms
40,320 KB
testcase_15 AC 125 ms
44,288 KB
testcase_16 AC 137 ms
48,128 KB
testcase_17 AC 153 ms
52,096 KB
testcase_18 AC 161 ms
55,808 KB
testcase_19 AC 175 ms
59,520 KB
testcase_20 AC 189 ms
63,360 KB
testcase_21 AC 202 ms
67,200 KB
testcase_22 AC 209 ms
71,296 KB
testcase_23 AC 210 ms
71,168 KB
testcase_24 AC 211 ms
71,296 KB
testcase_25 AC 86 ms
32,896 KB
testcase_26 AC 74 ms
28,800 KB
testcase_27 AC 61 ms
24,960 KB
testcase_28 AC 160 ms
55,680 KB
testcase_29 AC 173 ms
59,648 KB
testcase_30 AC 209 ms
71,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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 = 8000000000000000;

int main(){
	int N, K;
	cin >> N >> K;
	vector<long long> 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;
}
0