結果

問題 No.2955 Pizza Delivery Plan
ユーザー vjudge1vjudge1
提出日時 2024-11-21 11:20:28
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 553 ms / 2,000 ms
コード長 1,861 bytes
コンパイル時間 2,342 ms
コンパイル使用メモリ 205,492 KB
実行使用メモリ 80,968 KB
最終ジャッジ日時 2024-11-21 11:20:38
合計ジャッジ時間 10,081 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
9,812 KB
testcase_01 AC 3 ms
9,816 KB
testcase_02 AC 5 ms
19,928 KB
testcase_03 AC 4 ms
15,960 KB
testcase_04 AC 7 ms
24,280 KB
testcase_05 AC 5 ms
14,156 KB
testcase_06 AC 4 ms
14,036 KB
testcase_07 AC 5 ms
16,088 KB
testcase_08 AC 51 ms
32,968 KB
testcase_09 AC 50 ms
33,104 KB
testcase_10 AC 84 ms
33,360 KB
testcase_11 AC 117 ms
42,112 KB
testcase_12 AC 149 ms
43,596 KB
testcase_13 AC 204 ms
45,168 KB
testcase_14 AC 225 ms
48,584 KB
testcase_15 AC 269 ms
53,940 KB
testcase_16 AC 306 ms
54,208 KB
testcase_17 AC 345 ms
59,404 KB
testcase_18 AC 383 ms
56,456 KB
testcase_19 AC 353 ms
49,664 KB
testcase_20 AC 348 ms
53,888 KB
testcase_21 AC 376 ms
57,728 KB
testcase_22 AC 512 ms
70,456 KB
testcase_23 AC 512 ms
72,588 KB
testcase_24 AC 508 ms
75,220 KB
testcase_25 AC 162 ms
49,332 KB
testcase_26 AC 112 ms
47,816 KB
testcase_27 AC 83 ms
47,568 KB
testcase_28 AC 373 ms
78,688 KB
testcase_29 AC 380 ms
80,004 KB
testcase_30 AC 553 ms
80,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

const int MAXN = 20, MAXX = (1 << 15);

int k, n;
double ans = 1e18, dp[MAXN][MAXN][MAXX];

struct E{
  int x, y;
} a[MAXN];

double C(int x, int y, int _x, int _y){
  return sqrt(1ll * (x - _x) * (x - _x) + 1ll * (y - _y) * (y - _y));
}
int main(){
  cin >> n >> k;
  a[0] = {0, 0};
  for(int i = 1; i <= n; i++){
    cin >> a[i].x >> a[i].y;
  }

  for(int i = 0; i <= n; i++){
    for(int j = 0; j <= k; j++){
      for(int k = 0; k < (1 << (n + 1)); k++){
        dp[i][j][k] = 1e18;
      }
    }
  }

  dp[0][k][1] = 0;
  for(int j = 1; j < (1 << (n + 1)); j++){
    for(int i = 1; i <= n; i++){
      if((j >> i & 1)) continue;
      for(int kk = 0; kk <= n; kk++){
        if(!(j >> kk & 1)) continue;
        for(int sy = 0; sy <= k; sy++){
          if(!sy){
            dp[i][k - 1][j | (1 << i)] = min(dp[i][k - 1][j | (1 << i)], dp[kk][sy][j] + C(a[i].x, a[i].y, 0, 0) + C(0, 0, a[kk].x, a[kk].y));
            //dp[i][k][j | (1 << i)] = min(dp[i][k][j | (1 << i)], dp[kk][sy][j] + C(a[i].x, a[i].y, 0, 0) + C(0, 0, a[kk].x, a[kk].y));
          } else {
            dp[i][sy - 1][j | (1 << i)] = min(dp[i][sy - 1][j | (1 << i)], dp[kk][sy][j] + C(a[i].x, a[i].y, a[kk].x, a[kk].y));
            dp[i][k][j | (1 << i)] = min(dp[i][k][j | (1 << i)], dp[kk][sy][j] + C(a[i].x, a[i].y, a[kk].x, a[kk].y) + 2 * C(0, 0, a[i].x, a[i].y));
            dp[i][k - 1][j | (1 << i)] = min(dp[i][k - 1][j | (1 << i)], dp[kk][sy][j] + min(C(a[i].x, a[i].y, 0, 0) + C(0, 0, a[kk].x, a[kk].y), C(a[i].x, a[i].y, a[kk].x, a[kk].y) + 2 * C(0, 0, a[i].x, a[i].y)));
          }
        }
      }
    }
  }

  for(int j = 1; j <= n; j++){
    for(int i = 0; i <= k; i++){
      ans = min(ans, dp[j][i][(1 << (n + 1)) - 1] + C(0, 0, a[j].x, a[j].y));
    }
  }

  cout << fixed << setprecision(11) << ans;
  return 0;
}
0