結果

問題 No.2955 Pizza Delivery Plan
ユーザー ripityripity
提出日時 2024-11-08 22:40:35
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 655 ms / 2,000 ms
コード長 976 bytes
コンパイル時間 2,584 ms
コンパイル使用メモリ 208,856 KB
実行使用メモリ 40,704 KB
最終ジャッジ日時 2024-11-08 22:40:48
合計ジャッジ時間 11,323 ms
ジャッジサーバーID
(参考情報)
judge1 / 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 3 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 62 ms
17,408 KB
testcase_09 AC 76 ms
17,536 KB
testcase_10 AC 119 ms
17,408 KB
testcase_11 AC 185 ms
21,376 KB
testcase_12 AC 204 ms
21,248 KB
testcase_13 AC 250 ms
25,088 KB
testcase_14 AC 288 ms
25,216 KB
testcase_15 AC 378 ms
29,056 KB
testcase_16 AC 363 ms
29,056 KB
testcase_17 AC 407 ms
32,896 KB
testcase_18 AC 459 ms
32,896 KB
testcase_19 AC 485 ms
36,608 KB
testcase_20 AC 523 ms
36,736 KB
testcase_21 AC 596 ms
40,448 KB
testcase_22 AC 622 ms
40,704 KB
testcase_23 AC 655 ms
40,448 KB
testcase_24 AC 613 ms
40,448 KB
testcase_25 AC 195 ms
21,248 KB
testcase_26 AC 189 ms
21,376 KB
testcase_27 AC 117 ms
17,536 KB
testcase_28 AC 448 ms
32,896 KB
testcase_29 AC 499 ms
36,736 KB
testcase_30 AC 639 ms
40,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

void chmin(double &x, double y) {
  if(x > y) x = y;
}

int main() {
  int N, K;
  cin >> N >> K;
  vector<double> x(N), y(N);
  for(int i = 0; i < N; i++) {
    cin >> x[i] >> y[i];
  }
  vector dp(1 << N, vector(N + 1, vector<double>(K + 1, INFINITY)));
  dp[0][N][K] = 0;
  for(int s = 0; s < 1 << N; s++) {
    // house to shop
    for(int i = 0; i < N; i++) {
      for(int k = 0; k < K; k++) {
        chmin(dp[s][N][K], dp[s][i][k] + hypot(x[i], y[i]));
      }
    }
    // shop to house
    for(int j = 0; j < N; j++) {
      chmin(dp[s | (1 << j)][j][K - 1], dp[s][N][K] + hypot(x[j], y[j]));
    }
    // house to house
    for(int i = 0; i < N; i++) {
      for(int j = 0; j < N; j++) {
        for(int k = 1; k <= K; k++) {
          chmin(dp[s | (1 << j)][j][k - 1], dp[s][i][k] + hypot(x[i] - x[j], y[i] - y[j]));
        }
      }
    }
  }
  cout << fixed << setprecision(10) << dp[(1 << N) - 1][N][K] << endl;
}
0