結果

問題 No.2955 Pizza Delivery Plan
ユーザー テナガザルテナガザル
提出日時 2024-11-08 22:36:11
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 798 ms / 2,000 ms
コード長 981 bytes
コンパイル時間 1,448 ms
コンパイル使用メモリ 119,864 KB
実行使用メモリ 77,568 KB
最終ジャッジ日時 2024-11-08 22:36:26
合計ジャッジ時間 12,471 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 1 ms
5,248 KB
testcase_07 AC 1 ms
5,248 KB
testcase_08 AC 92 ms
31,488 KB
testcase_09 AC 125 ms
31,360 KB
testcase_10 AC 157 ms
31,232 KB
testcase_11 AC 217 ms
39,168 KB
testcase_12 AC 258 ms
39,040 KB
testcase_13 AC 314 ms
46,848 KB
testcase_14 AC 385 ms
46,720 KB
testcase_15 AC 410 ms
54,272 KB
testcase_16 AC 454 ms
54,528 KB
testcase_17 AC 538 ms
62,208 KB
testcase_18 AC 558 ms
61,952 KB
testcase_19 AC 644 ms
69,760 KB
testcase_20 AC 695 ms
69,760 KB
testcase_21 AC 723 ms
77,312 KB
testcase_22 AC 762 ms
77,312 KB
testcase_23 AC 775 ms
77,312 KB
testcase_24 AC 798 ms
77,568 KB
testcase_25 AC 249 ms
38,912 KB
testcase_26 AC 212 ms
39,168 KB
testcase_27 AC 157 ms
31,232 KB
testcase_28 AC 569 ms
61,952 KB
testcase_29 AC 616 ms
69,632 KB
testcase_30 AC 787 ms
77,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <cmath>
#include <algorithm>

using namespace std;

int main()
{
  int n, c;
  cin >> n >> c;
  ++n;
  vector<int> x(n), y(n);
  for (int i = 1; i < n; ++i) cin >> x[i] >> y[i];
  vector<vector<vector<double>>> dp(1 << n, vector<vector<double>> (n, vector<double> (c + 1, 1e300)));
  dp[1][0][c] = 0;
  for (int i = 0; i < 1 << n; ++i)
  {
    for (int k = 0; k <= c; ++k) dp[i][0][c] = min(dp[i][0][k], dp[i][0][c]);
    for (int j = 0; j < n; ++j)
    {
      if (!(i & (1 << j))) continue;
      for (int k = c; k > 0; --k)
      {
        for (int l = 0; l < n; ++l)
        {
          int id = (i | (1 << l));
          dp[id][l][k - 1] = min(dp[id][l][k - 1], dp[i][j][k] + hypot(x[l] - x[j], y[l] - y[j]));
        }
      }
      for (int k = 0; k <= c; ++k) dp[i | 1][0][c] = min(dp[i | 1][j][k] + hypot(x[j] - x[0], y[j] - y[0]), dp[i | 1][0][c]);
    }
  }
  double ans = dp[(1 << n) -1][0][c];
  printf("%.10f\n", ans);
}
0