結果

問題 No.2955 Pizza Delivery Plan
ユーザー 👑 binapbinap
提出日時 2024-05-28 16:41:17
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,095 bytes
コンパイル時間 2,361 ms
コンパイル使用メモリ 211,048 KB
実行使用メモリ 71,296 KB
最終ジャッジ日時 2024-10-25 19:23:31
合計ジャッジ時間 29,326 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,820 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 -
権限があれば一括ダウンロードができます

ソースコード

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<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;
}
0