結果

問題 No.2955 Pizza Delivery Plan
ユーザー vjudge1vjudge1
提出日時 2024-11-21 11:16:08
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,509 bytes
コンパイル時間 2,999 ms
コンパイル使用メモリ 203,116 KB
実行使用メモリ 61,440 KB
最終ジャッジ日時 2024-11-21 11:16:22
合計ジャッジ時間 7,707 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 3 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 3 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 WA -
testcase_08 AC 36 ms
11,648 KB
testcase_09 AC 38 ms
11,392 KB
testcase_10 AC 55 ms
15,360 KB
testcase_11 AC 77 ms
19,328 KB
testcase_12 WA -
testcase_13 AC 103 ms
26,880 KB
testcase_14 AC 119 ms
30,592 KB
testcase_15 AC 163 ms
34,688 KB
testcase_16 AC 151 ms
38,528 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 232 ms
57,600 KB
testcase_22 AC 250 ms
61,440 KB
testcase_23 AC 253 ms
61,312 KB
testcase_24 AC 251 ms
61,312 KB
testcase_25 WA -
testcase_26 AC 77 ms
19,328 KB
testcase_27 AC 54 ms
15,232 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 245 ms
61,312 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));
          } 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));
          }
        }
      }
    }
  }

  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