結果

問題 No.2955 Pizza Delivery Plan
ユーザー twooimp2twooimp2
提出日時 2024-12-29 19:53:04
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 1,336 bytes
コンパイル時間 5,516 ms
コンパイル使用メモリ 273,896 KB
実行使用メモリ 67,456 KB
最終ジャッジ日時 2024-12-29 19:53:16
合計ジャッジ時間 11,308 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 WA -
testcase_04 AC 2 ms
5,248 KB
testcase_05 WA -
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 207 ms
41,856 KB
testcase_17 AC 226 ms
46,464 KB
testcase_18 AC 251 ms
50,304 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 317 ms
63,104 KB
testcase_22 AC 337 ms
67,200 KB
testcase_23 AC 352 ms
67,200 KB
testcase_24 AC 333 ms
67,456 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 338 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(10);
}

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!=0&&!(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][i]=min(dp[b|(1<<i)][K][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