結果

問題 No.2955 Pizza Delivery Plan
ユーザー 👑 binapbinap
提出日時 2024-05-28 16:04:34
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 968 bytes
コンパイル時間 2,317 ms
コンパイル使用メモリ 211,640 KB
実行使用メモリ 47,260 KB
最終ジャッジ日時 2024-10-25 19:22:54
合計ジャッジ時間 12,802 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,772 KB
testcase_01 AC 2 ms
6,824 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,820 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 TLE -
testcase_13 WA -
testcase_14 TLE -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
権限があれば一括ダウンロードができます

ソースコード

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 = 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(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){
			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