結果
問題 | No.2955 Pizza Delivery Plan |
ユーザー | HIcoder |
提出日時 | 2024-12-15 00:00:27 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 170 ms / 2,000 ms |
コード長 | 1,713 bytes |
コンパイル時間 | 1,891 ms |
コンパイル使用メモリ | 144,680 KB |
実行使用メモリ | 38,164 KB |
最終ジャッジ日時 | 2024-12-15 00:00:33 |
合計ジャッジ時間 | 6,125 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 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 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 | 51 ms
16,512 KB |
testcase_09 | AC | 51 ms
16,512 KB |
testcase_10 | AC | 60 ms
16,512 KB |
testcase_11 | AC | 71 ms
20,136 KB |
testcase_12 | AC | 78 ms
20,096 KB |
testcase_13 | AC | 88 ms
23,680 KB |
testcase_14 | AC | 95 ms
23,808 KB |
testcase_15 | AC | 106 ms
27,220 KB |
testcase_16 | AC | 115 ms
27,392 KB |
testcase_17 | AC | 125 ms
30,800 KB |
testcase_18 | AC | 131 ms
30,848 KB |
testcase_19 | AC | 146 ms
34,560 KB |
testcase_20 | AC | 150 ms
34,560 KB |
testcase_21 | AC | 161 ms
38,016 KB |
testcase_22 | AC | 168 ms
38,016 KB |
testcase_23 | AC | 169 ms
38,164 KB |
testcase_24 | AC | 170 ms
38,144 KB |
testcase_25 | AC | 79 ms
20,176 KB |
testcase_26 | AC | 71 ms
20,048 KB |
testcase_27 | AC | 61 ms
16,512 KB |
testcase_28 | AC | 132 ms
30,848 KB |
testcase_29 | AC | 144 ms
34,432 KB |
testcase_30 | AC | 169 ms
38,016 KB |
ソースコード
#include<iostream> #include<string> #include<queue> #include<vector> #include<cassert> #include<random> #include<set> #include<map> #include<cassert> #include<unordered_map> #include<bitset> #include<numeric> #include<algorithm> using namespace std; using ll = long long; const int inf=1<<30; const ll INF=1LL<<62; typedef pair<ll,ll> P; typedef pair<int,P> PP; const ll MOD=998244353; const int dy[]={0,1,0,-1}; const int dx[]={1,0,-1,0}; void chmin(double &a,const double &b){ a=min(a,b); } int main(){ int N,K; cin>>N>>K; vector<P> pos(N+1); for(int i=0;i<N;i++){ cin>>pos[i].first>>pos[i].second; } auto dist=[&](const P lhs,const P rhs)->double{ double dx=lhs.first-rhs.first; double dy=lhs.second-rhs.second; return sqrt(dx*dx+dy*dy); }; vector dp(1<<N,vector<vector<double>>(N,vector<double>(K+1,INF))); for(int i=0;i<N;i++){ dp[1<<i][i][K-1]=dist({0,0},pos[i]); } for(int S=0;S<(1<<N);S++){ for(int k=0;k<=K;k++){ for(int now=0;now<N;now++){ if(!(S>>now&1)) continue; for(int to=0;to<N;to++){ if((S>>to)&1) continue; if(k-1>=0){ chmin(dp[S|1<<to][to][k-1],dp[S][now][k]+dist(pos[now],pos[to])); } chmin(dp[S|1<<to][to][K-1],dp[S][now][k]+dist(pos[now],{0,0})+dist({0,0},pos[to])); } } } } double ans=INF; for(int t=0;t<=K;t++){ for(int i=0;i<N;i++){ //街iで終わる chmin(ans,dp[(1<<N)-1][i][t]+dist(pos[i],{0,0})); } } printf("%.10f\n",ans); }