結果

問題 No.2955 Pizza Delivery Plan
ユーザー KudeKude
提出日時 2024-11-08 21:59:55
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 311 ms / 2,000 ms
コード長 1,583 bytes
コンパイル時間 3,238 ms
コンパイル使用メモリ 276,732 KB
実行使用メモリ 61,440 KB
最終ジャッジ日時 2024-11-08 22:00:05
合計ジャッジ時間 9,323 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
61,056 KB
testcase_01 AC 43 ms
61,440 KB
testcase_02 AC 41 ms
61,312 KB
testcase_03 AC 41 ms
61,440 KB
testcase_04 AC 42 ms
61,184 KB
testcase_05 AC 42 ms
61,312 KB
testcase_06 AC 41 ms
61,184 KB
testcase_07 AC 43 ms
61,184 KB
testcase_08 AC 68 ms
61,056 KB
testcase_09 AC 66 ms
61,184 KB
testcase_10 AC 86 ms
61,184 KB
testcase_11 AC 105 ms
61,440 KB
testcase_12 AC 125 ms
61,056 KB
testcase_13 AC 147 ms
61,312 KB
testcase_14 AC 163 ms
61,184 KB
testcase_15 AC 187 ms
61,184 KB
testcase_16 AC 209 ms
61,440 KB
testcase_17 AC 218 ms
61,056 KB
testcase_18 AC 229 ms
61,312 KB
testcase_19 AC 251 ms
61,312 KB
testcase_20 AC 266 ms
61,312 KB
testcase_21 AC 299 ms
61,312 KB
testcase_22 AC 311 ms
61,184 KB
testcase_23 AC 309 ms
61,184 KB
testcase_24 AC 310 ms
61,312 KB
testcase_25 AC 153 ms
61,440 KB
testcase_26 AC 107 ms
61,056 KB
testcase_27 AC 88 ms
61,312 KB
testcase_28 AC 238 ms
61,440 KB
testcase_29 AC 256 ms
61,312 KB
testcase_30 AC 306 ms
61,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
namespace {
#pragma GCC diagnostic ignored "-Wunused-function"
#include<atcoder/all>
#pragma GCC diagnostic warning "-Wunused-function"
using namespace std;
using namespace atcoder;
#define rep(i,n) for(int i = 0; i < (int)(n); i++)
#define rrep(i,n) for(int i = (int)(n) - 1; i >= 0; i--)
#define all(x) begin(x), end(x)
#define rall(x) rbegin(x), rend(x)
template<class T> bool chmax(T& a, const T& b) { if (a < b) { a = b; return true; } else return false; }
template<class T> bool chmin(T& a, const T& b) { if (b < a) { a = b; return true; } else return false; }
using ll = long long;
using P = pair<int,int>;
using VI = vector<int>;
using VVI = vector<VI>;
using VL = vector<ll>;
using VVL = vector<VL>;

double dp[1 << 15][15][15];
double dist[15][15];

} int main() {
  ios::sync_with_stdio(false);
  cin.tie(0);
  int n, k;
  cin >> n >> k;
  vector<P> xy(n);
  for (auto& [x, y] : xy) cin >> x >> y;
  xy.insert(xy.begin(), 1, pair(0, 0));
  rep(i, n + 1) rep(j, n + 1) {
    int dx = xy[i].first - xy[j].first;
    int dy = xy[i].second - xy[j].second;
    dist[i][j] = sqrt(ll(dx) * dx + ll(dy) * dy);
  }
  constexpr double inf = 1e20;
  rep(s, 1 << 15) rep(v, 15) rep(kv, 15) dp[s][v][kv] = inf;
  dp[1][0][k] = 0;
  rep(s, 1 << (n + 1)) {
    rep(u, n + 1) rep(ku, k + 1) {
      chmin(dp[s][0][k], dp[s][u][ku] + dist[u][0]);
    }
    rep(u, n + 1) rep(ku, k + 1) if (ku) rep(v, n + 1) {
      chmin(dp[s | 1 << v][v][ku - 1], dp[s][u][ku] + dist[u][v]);
    }
  }
  cout << fixed << setprecision(12) << dp[(1 << (n + 1)) - 1][0][k] << '\n';
}
0