結果

問題 No.2955 Pizza Delivery Plan
ユーザー 👑 binapbinap
提出日時 2024-05-28 16:56:08
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 1,543 bytes
コンパイル時間 2,444 ms
コンパイル使用メモリ 209,372 KB
実行使用メモリ 8,320 KB
最終ジャッジ日時 2024-10-25 19:22:42
合計ジャッジ時間 4,647 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 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 AC 2 ms
6,816 KB
testcase_08 AC 43 ms
8,192 KB
testcase_09 AC 43 ms
8,192 KB
testcase_10 AC 43 ms
8,064 KB
testcase_11 AC 44 ms
8,192 KB
testcase_12 AC 42 ms
8,064 KB
testcase_13 AC 43 ms
8,064 KB
testcase_14 AC 43 ms
8,064 KB
testcase_15 AC 43 ms
8,192 KB
testcase_16 AC 43 ms
8,192 KB
testcase_17 AC 44 ms
8,064 KB
testcase_18 AC 44 ms
8,320 KB
testcase_19 AC 44 ms
8,320 KB
testcase_20 AC 44 ms
8,064 KB
testcase_21 AC 44 ms
8,192 KB
testcase_22 AC 43 ms
8,064 KB
testcase_23 AC 43 ms
8,192 KB
testcase_24 AC 44 ms
8,320 KB
testcase_25 AC 43 ms
8,192 KB
testcase_26 AC 43 ms
8,064 KB
testcase_27 AC 43 ms
8,192 KB
testcase_28 AC 44 ms
8,064 KB
testcase_29 AC 43 ms
8,320 KB
testcase_30 AC 43 ms
8,064 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;

template<typename T> ostream& operator<<(ostream& os, const vector<T>& v){int n = v.size(); rep(i, n) os << v[i] << (i == n - 1 ? "\n" : " "); return os;}
template<typename T> ostream& operator<<(ostream& os, const vector<vector<T>>& v){int n = v.size(); rep(i, n) os << v[i] << (i == n - 1 ? "\n" : ""); return os;}

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<long double>> f(1 << N, vector<long double>(N + 1, INF));
	f[0][N] = 0;
	rep(bit, 1 << N){
		rep(from, N + 1){
		if(from < N) if((~bit >> from) & 1) continue;
			rep(to, N){
				if((bit >> to) & 1) continue;
				chmin(f[bit | (1 << to)][to], f[bit][from] + dist[from][to]);
			}
		}
	}
	vector<long double> g(1 << N, INF);
	rep(bit, 1 << N){
		int cnt = __builtin_popcount(bit);
		if(cnt <= K){
			rep(from, N){
				chmin(g[bit], f[bit][from] + dist[from][N]);
			}
		}
	}
	rep(bit1, 1 << N){
		for(int bit2 = bit1; bit2 > 0; bit2 = ((bit2 - 1) & bit1)){
			chmin(g[bit1], g[bit1 - bit2] + g[bit2]);
		}
	}
	cout << setprecision(15);
	cout << g[(1 << N) - 1] << "\n";
	return 0;
}
0