結果

問題 No.2955 Pizza Delivery Plan
ユーザー 沙耶花沙耶花
提出日時 2024-11-08 21:37:46
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 162 ms / 2,000 ms
コード長 938 bytes
コンパイル時間 5,624 ms
コンパイル使用メモリ 267,548 KB
実行使用メモリ 77,568 KB
最終ジャッジ日時 2024-11-08 21:37:57
合計ジャッジ時間 8,365 ms
ジャッジサーバーID
(参考情報)
judge1 / 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 61 ms
31,488 KB
testcase_09 AC 61 ms
31,360 KB
testcase_10 AC 71 ms
31,360 KB
testcase_11 AC 87 ms
39,040 KB
testcase_12 AC 93 ms
39,168 KB
testcase_13 AC 105 ms
46,720 KB
testcase_14 AC 112 ms
46,720 KB
testcase_15 AC 127 ms
54,272 KB
testcase_16 AC 128 ms
54,400 KB
testcase_17 AC 137 ms
61,952 KB
testcase_18 AC 139 ms
62,080 KB
testcase_19 AC 150 ms
69,760 KB
testcase_20 AC 153 ms
69,888 KB
testcase_21 AC 156 ms
77,440 KB
testcase_22 AC 157 ms
77,568 KB
testcase_23 AC 157 ms
77,440 KB
testcase_24 AC 154 ms
77,312 KB
testcase_25 AC 91 ms
39,168 KB
testcase_26 AC 87 ms
39,040 KB
testcase_27 AC 71 ms
31,488 KB
testcase_28 AC 145 ms
62,080 KB
testcase_29 AC 153 ms
69,760 KB
testcase_30 AC 162 ms
77,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <atcoder/all>
#include <bits/stdc++.h>
using namespace std;
using namespace atcoder;
using mint = modint998244353;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf32 1000000001
#define Inf64 1000000000000000000LL


int main(){
	
	int N,K;
	cin>>N>>K;
	vector<double> x(N),y(N);
	rep(i,N) cin>>x[i]>>y[i];
	x.insert(x.begin(),0);
	y.insert(y.begin(),0);
	N++;
	vector dp(1<<N,vector(N,vector<double>(K+1,1e100)));
	dp[1][0][0] = 0.0;
	rep(i,1<<N){
		for(int k=K;k>=0;k--){
		rep(j,N){
			
				if(dp[i][j][k]==1e100)continue;
				rep(l,N){
					if(k==K&&l!=0)continue;
					if(l!=0&&((i>>l)&1))continue;
					double d = sqrt((x[j]-x[l])*(x[j]-x[l])+(y[j]-y[l])*(y[j]-y[l]));
					int ni = i|(1<<l);
					int nj = l;
					int nk = k+1;
					if(l==0)nk = 0;
					dp[ni][nj][nk] = min(dp[ni][nj][nk],dp[i][j][k]+d);
				}
			}
		}
	}
	cout<<fixed<<setprecision(20)<<dp[(1<<N)-1][0][0]<<endl;
	return 0;
}
0