結果

問題 No.2955 Pizza Delivery Plan
ユーザー nouka28nouka28
提出日時 2024-11-08 22:07:18
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 97 ms / 2,000 ms
コード長 1,116 bytes
コンパイル時間 3,751 ms
コンパイル使用メモリ 253,900 KB
実行使用メモリ 12,800 KB
最終ジャッジ日時 2024-11-08 22:07:25
合計ジャッジ時間 6,077 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 64 ms
12,800 KB
testcase_09 AC 64 ms
12,800 KB
testcase_10 AC 69 ms
12,672 KB
testcase_11 AC 72 ms
12,672 KB
testcase_12 AC 77 ms
12,672 KB
testcase_13 AC 85 ms
12,800 KB
testcase_14 AC 97 ms
12,800 KB
testcase_15 AC 91 ms
12,672 KB
testcase_16 AC 94 ms
12,800 KB
testcase_17 AC 91 ms
12,672 KB
testcase_18 AC 91 ms
12,800 KB
testcase_19 AC 91 ms
12,672 KB
testcase_20 AC 92 ms
12,672 KB
testcase_21 AC 92 ms
12,672 KB
testcase_22 AC 92 ms
12,672 KB
testcase_23 AC 92 ms
12,672 KB
testcase_24 AC 92 ms
12,800 KB
testcase_25 AC 81 ms
12,672 KB
testcase_26 AC 75 ms
12,544 KB
testcase_27 AC 66 ms
12,672 KB
testcase_28 AC 91 ms
12,672 KB
testcase_29 AC 92 ms
12,672 KB
testcase_30 AC 92 ms
12,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")

#define int long long

using ld=long double;

signed main(){
	int N,K;cin>>N>>K;
	vector<int> X(N+1),Y(N+1);
	for(int i=0;i<N;i++){
		cin>>X[i]>>Y[i];
	}
	
	X[N]=0,Y[N]=0;

	vector<vector<ld>> d(N+1,vector<ld>(N+1));

	for(int i=0;i<=N;i++){
		for(int j=0;j<=N;j++){
			d[i][j]=hypotl(X[i]-X[j],Y[i]-Y[j]);
		}
	}

	// cout<<"!"<<endl;

	vector<vector<ld>> dpdp(1<<(N+1),vector<ld>(N+1,1e18));

	dpdp[0][N]=0;

	for(int S=0;S<(1<<(N+1));S++){
		for(int i=0;i<=N;i++){
			for(int j=0;j<=N;j++){
				if(S>>j&1)continue;
				dpdp[S|(1<<j)][j]=min(dpdp[S|(1<<j)][j],dpdp[S][i]+d[i][j]);
			}
		}
	}

	// for(int S=0;S<(1<<(N+1));S++){
	// 	cout<<dpdp[S][N]<<" ";
	// }
	// cout<<endl;

	
	// cout<<"!"<<endl;

	vector<ld> dp(1<<N,1e18);

	dp[0]=0;

	for(int S=0;S<(1<<N);S++){
		int al=(1<<N)-1;

		int st=al^S;
		int sub=st;

		while(sub){
			if(__popcount(sub)<=K){
				dp[S|sub]=min(dp[S|sub],dp[S]+dpdp[sub|(1<<N)][N]);
			}
			sub=(sub-1)&st;
		}
	}

	cout<<fixed<<setprecision(20)<<dp[(1<<N)-1]<<endl;
}
0