結果

問題 No.2955 Pizza Delivery Plan
ユーザー vjudge1vjudge1
提出日時 2024-11-21 10:49:29
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,340 bytes
コンパイル時間 2,147 ms
コンパイル使用メモリ 203,348 KB
実行使用メモリ 81,244 KB
最終ジャッジ日時 2024-11-21 10:49:40
合計ジャッジ時間 8,917 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

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((x - _x) * (x - _x) + (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 <= n; 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][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));
          }
        }
      }
    }
  }

  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