結果

問題 No.2955 Pizza Delivery Plan
ユーザー twooimp2twooimp2
提出日時 2024-12-29 19:57:38
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 340 ms / 2,000 ms
コード長 1,334 bytes
コンパイル時間 5,144 ms
コンパイル使用メモリ 274,444 KB
実行使用メモリ 67,328 KB
最終ジャッジ日時 2024-12-29 19:57:49
合計ジャッジ時間 10,869 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 3 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 3 ms
6,816 KB
testcase_08 AC 54 ms
12,544 KB
testcase_09 AC 55 ms
12,544 KB
testcase_10 AC 77 ms
16,640 KB
testcase_11 AC 93 ms
20,864 KB
testcase_12 AC 121 ms
25,088 KB
testcase_13 AC 131 ms
29,440 KB
testcase_14 AC 172 ms
33,536 KB
testcase_15 AC 174 ms
37,760 KB
testcase_16 AC 207 ms
41,856 KB
testcase_17 AC 225 ms
46,208 KB
testcase_18 AC 246 ms
50,432 KB
testcase_19 AC 256 ms
54,656 KB
testcase_20 AC 307 ms
58,880 KB
testcase_21 AC 295 ms
63,232 KB
testcase_22 AC 322 ms
67,200 KB
testcase_23 AC 308 ms
67,328 KB
testcase_24 AC 319 ms
67,328 KB
testcase_25 AC 113 ms
24,832 KB
testcase_26 AC 90 ms
20,992 KB
testcase_27 AC 72 ms
16,512 KB
testcase_28 AC 249 ms
50,432 KB
testcase_29 AC 259 ms
54,656 KB
testcase_30 AC 340 ms
67,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
#include<bits/stdc++.h>
using namespace std;
using ll=long long;
using ld=long double;

void IO(){
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);
  cout<<fixed<<setprecision(20);
}

ll n,K;
vector<ld> x,y;

ld d1(ll i,ll j){
  ld n2=(x[i]-x[j])*(x[i]-x[j])+(y[i]-y[j])*(y[i]-y[j]);
  return sqrt(n2);
}

ld d2(ll i){
  ld n2=x[i]*x[i]+y[i]*y[i];
  return sqrt(n2);
}

int main(){
  IO();
  cin>>n>>K;
  x.resize(n);
  y.resize(n);
  for(ll i=0;i<n;i++){
    cin>>x[i]>>y[i];
  }
  vector<vector<vector<ld>>> dp(1<<n,vector<vector<ld>>(K+1,vector<ld>(n,1e18)));
  for(ll i=0;i<n;i++){
    dp[1<<i][K-1][i]=d2(i);
  }
  for(ll b=1;b<(1<<n);b++){
    for(ll i=0;i<n;i++){
      for(ll j=0;j<n;j++){
        if(!(b&(1<<j))){
          continue;
        }
        if((b&(1<<i))==0){
          if(i!=j){
            for(ll k=0;k<=K;k++){
              if(k>0){
                dp[b|(1<<i)][k-1][i]=min(dp[b|(1<<i)][k-1][i],dp[b][k][j]+d1(j,i));
              }
              dp[b|(1<<i)][K-1][i]=min(dp[b|(1<<i)][K-1][i],dp[b][k][j]+d2(j)+d2(i));
            }
          }
        }
      }
    }
  }
  ld ans=1e18;
  for(ll i=0;i<n;i++){
    for(ll j=0;j<=K;j++){
      ans=min(ans,dp[(1<<n)-1][j][i]+d2(i));
    }
  }
  cout<<ans<<endl;
}
0