結果

問題 No.2955 Pizza Delivery Plan
ユーザー pengin_2000pengin_2000
提出日時 2024-11-08 22:54:47
言語 C
(gcc 12.3.0)
結果
RE  
実行時間 -
コード長 980 bytes
コンパイル時間 573 ms
コンパイル使用メモリ 33,024 KB
実行使用メモリ 41,728 KB
最終ジャッジ日時 2024-11-08 22:54:56
合計ジャッジ時間 7,668 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 1 ms
5,248 KB
testcase_06 AC 1 ms
5,248 KB
testcase_07 AC 1 ms
5,248 KB
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<stdio.h>
#include<math.h>
double x[16], y[16];
double dist(long long int i, long long int j)
{
	return sqrt((x[i] - x[j]) * (x[i] - x[j]) + (y[i] - y[j]) * (y[i] - y[j]));
}
double dp[20004][16][16];
int main()
{
	long long int n, k;
	scanf("%lld %lld", &n, &k);
	long long int i, j, l, c;
	for (i = 0; i < n; i++)
		scanf("%lf%lf", &x[i + 1], &y[i + 1]);
	x[0] = y[0] = 0;
	for (i = 0; i < (1 << (n + 1)); i++)
		for (j = 0; j <= n; j++)
			for (l = 0; l <= k; l++)
				dp[i][j][l] = 1e18;
	dp[1][0][k] = 0;
	for (l = 0; l < (1 << (n + 1)); l++)
	{
		for (i = n; i >= 0; i--)
		{
			for (c = 0; c <= k; c++)
			{
				dp[l | 1][0][k] = fmin(dp[l | 1][0][k], dp[l][i][c] + dist(0, i));
				if (c == 0)
					continue;
				for (j = 1; j <= n; j++)
				{
					if (((l >> j) & 1) > 0)
						continue;
					dp[l | (1 << j)][j][c - 1] = fmin(dp[l | (1 << j)][j][c - 1], dp[l][i][c] + dist(i, j));
				}
			}
		}
	}
	printf("%.20lf\n", dp[(1 << (n + 1)) - 1][0][k]);
	return 0;
}
0