結果

問題 No.2955 Pizza Delivery Plan
ユーザー tnakao0123tnakao0123
提出日時 2024-11-11 17:55:58
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,651 bytes
コンパイル時間 772 ms
コンパイル使用メモリ 60,692 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-11 17:56:01
合計ジャッジ時間 2,591 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 ms
5,248 KB
testcase_07 WA -
testcase_08 AC 12 ms
5,248 KB
testcase_09 AC 13 ms
5,248 KB
testcase_10 AC 14 ms
5,248 KB
testcase_11 AC 14 ms
5,248 KB
testcase_12 WA -
testcase_13 AC 14 ms
5,248 KB
testcase_14 AC 13 ms
5,248 KB
testcase_15 AC 14 ms
5,248 KB
testcase_16 AC 14 ms
5,248 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 13 ms
5,248 KB
testcase_22 AC 14 ms
5,248 KB
testcase_23 AC 14 ms
5,248 KB
testcase_24 AC 14 ms
5,248 KB
testcase_25 WA -
testcase_26 AC 14 ms
5,248 KB
testcase_27 AC 14 ms
5,248 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 14 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 2955.cc:  No.2955 Pizza Delivery Plan - yukicoder
 */

#include<cstdio>
#include<cmath>
#include<algorithm>

using namespace std;

/* constant */

const int MAX_N = 14;
const int NBITS = 1 << MAX_N;
const double DINF = 1e60;

/* typedef */

/* global variables */

int xs[MAX_N], ys[MAX_N];
double es[MAX_N][MAX_N], oes[MAX_N];
int bnums[NBITS];
double dp[NBITS][MAX_N];

/* subroutines */

inline double dist(double dx, double dy) {
  return sqrt(dx * dx + dy * dy);
}

inline void setmin(double &a, double b) { if (a > b) a = b; }

/* main */

int main() {
  int n, k;
  scanf("%d%d", &n, &k);
  for (int i = 0; i < n; i++) scanf("%d%d", xs + i, ys + i);

  for (int i = 0; i < n; i++) {
    oes[i] = dist(xs[i], ys[i]);
    es[i][i] = 0.0;
    for (int j = i + 1; j < n; j++)
      es[i][j] = es[j][i] = dist(xs[j] - xs[i], ys[j] - ys[i]);
  }

  int nbits = 1 << n;
  for (int bits = 1, msb = 1; bits < nbits; bits++) {
    if ((msb << 1) <= bits) msb <<= 1;
    bnums[bits] = bnums[bits ^ msb] + 1;
  }

  for (int bits = 0; bits < nbits; bits++)
    fill(dp[bits], dp[bits] + n, DINF);

  for (int i = 0; i < n; i++) dp[1 << i][i] = oes[i];

  for (int bits = 0; bits < nbits; bits++) {
    int bn = bnums[bits];
    for (int i = 0; i < n; i++)
      if (dp[bits][i] < DINF) {
	for (int j = 0, bj = 1; j < n; j++, bj <<= 1)
	  if (! (bits & bj)) {
	    double d = dp[bits][i] + ((bn % k) ? es[i][j] : oes[i] + oes[j]);
	    setmin(dp[bits | bj][j], d);
	  }
      }
  }

  double mind = DINF;
  for (int i = 0; i < n; i++)
    setmin(mind, dp[nbits - 1][i] + oes[i]);

  printf("%.11lf\n", mind);
  
  return 0;
}
0