結果

問題 No.134 走れ!サブロー君
ユーザー pew pew pewpew pew pew
提出日時 2024-10-03 12:15:53
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 6 ms / 5,000 ms
コード長 1,104 bytes
コンパイル時間 1,331 ms
コンパイル使用メモリ 168,720 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-03 12:16:08
合計ジャッジ時間 1,964 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 3 ms
6,816 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 3 ms
6,816 KB
testcase_07 AC 4 ms
6,816 KB
testcase_08 AC 6 ms
6,816 KB
testcase_09 AC 6 ms
6,820 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 2 ms
6,820 KB
testcase_12 AC 2 ms
6,820 KB
testcase_13 AC 1 ms
6,820 KB
testcase_14 AC 2 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

const int N = 15;
ll n;
ll x[N], y[N];
double ans, w[N];
double dp[N][1 << N], W[1 << N];

double dis(ll i, ll j) {return abs(x[i] - x[j]) + abs(y[i] - y[j]);}

int main()
{
	scanf("%lld%lld%lld", &x[0], &y[0], &n);
	for (int i = 1; i <= n; i++) scanf("%lld%lld%lf", &x[i], &y[i], &w[i]);
	for (int S = 0; S < (1 << n); S++)
	{
		for (int i = 1; i <= n; i++)
		{
			if (!(S & (1 << (i - 1)))) W[S] += w[i];
			dp[i][S] = 1e18;
		}
	}
	for (int i = 1; i <= n; i++) dp[i][1 << (i - 1)] = dis(0, i) * (W[0] + 100.0) / 120.0 + w[i];
	for (int S = 1; S < (1 << n); S++)
	{
		for (int i = 1; i <= n; i++)
		{
			if (S & (1 << (i - 1)))
			{
				for (int j = 1; j <= n; j++)
				{
					if (i == j) continue;
					if (S & (1 << (j - 1)))
					{
						dp[i][S] = min(dp[i][S], dp[j][S ^ (1 << (i - 1))] + dis(i, j) * (W[S ^ (1 << (i - 1))] + 100.0) / 120.0 + w[i]);
					}
				}
			}
		}
	}
	ans = 1e18;
	for (int i = 1; i <= n; i++)
	{
		ans = min(ans, dp[i][(1 << n) - 1] + dis(i, 0) * 100.0 / 120.0);
	}
	printf("%.7f\n", ans);
	return 0;
}
0