結果
問題 | No.134 走れ!サブロー君 |
ユーザー | evima |
提出日時 | 2015-01-22 23:33:39 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,258 bytes |
コンパイル時間 | 1,388 ms |
コンパイル使用メモリ | 159,992 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-23 00:29:02 |
合計ジャッジ時間 | 2,286 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
ソースコード
// Enjoy your stay. #include <bits/stdc++.h> #define EPS 1e-9 #define INF 1070000000LL #define MOD 1000000007LL #define all(x) (x).begin(),(x).end() #define fir first #define foreach(it,X) for(auto it=(X).begin();it!=(X).end();it++) #define ite iterator #define mp make_pair #define mt make_tuple #define rep(i,n) rep2(i,0,n) #define rep2(i,m,n) for(int i=m;i<(n);i++) #define pb push_back #define sec second #define sz(x) ((int)(x).size()) using namespace std; typedef istringstream iss; typedef long long ll; typedef pair<ll,ll> pi; typedef stringstream sst; typedef vector<ll> vi; int n; int x[14],y[14],w[14]; double dp[14][1<<14]; int d(int i,int j){ return abs(x[i]-x[j])+abs(y[i]-y[j]); } double f(int cur,int mask){ double& res = dp[cur][mask]; if(res != -INF) return res; res = INF; double W = 0; rep(i,n)if(mask>>i&1) W += w[i]; double T = (W + 100) / 120.;cout<<T<<endl; if(mask == 0){ res = T * d(cur,0); }else{ rep2(i,1,n)if(mask>>i&1){ res = min(res, w[i]+T*d(cur,i) + f(i,mask^1<<i)); } } return res; } int main(){ cin.tie(0); ios_base::sync_with_stdio(0); cin>>x[0]>>y[0]>>n; n++; rep2(i,1,n){ cin>>x[i]>>y[i]>>w[i]; } rep(i,n)rep(j,1<<n)dp[i][j]=-INF; cout<<setprecision(16)<<f(0,(1<<n) - 2)<<endl; }