結果
問題 | No.66 輝け☆全国たこやき杯 |
ユーザー | IL_msta |
提出日時 | 2017-02-08 19:33:40 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,039 bytes |
コンパイル時間 | 1,343 ms |
コンパイル使用メモリ | 112,104 KB |
実行使用メモリ | 20,224 KB |
最終ジャッジ日時 | 2024-06-07 13:10:12 |
合計ジャッジ時間 | 2,090 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
ソースコード
#ifdef __GNUC__ #pragma GCC optimize ("O3") #pragma GCC target ("avx") #endif #define _USE_MATH_DEFINES #include <iostream> #include <iomanip> #include <stdio.h> #include <sstream> #include <algorithm> #include <cmath> #include <string> #include <cstring> #include <vector> #include <valarray> #include <array> #include <queue> #include <complex> #include <set> #include <map> #include <stack> #include <list> #include <cassert>//assert(); #include <fstream> ///////// #define REP(i, x, n) for(int i = x; i < n; i++) #define rep(i,n) REP(i,0,n) ///////// typedef long long LL; typedef long double LD; typedef unsigned long long ULL; #define PII pair<int,int> ///////// using namespace::std; // 最大公約数 template<class T> inline T gcd(T a, T b){return b == 0 ? a : gcd(b, a % b);} // 最小公倍数 template<class T> inline T lcm(T a, T b){return a * b / gcd(a, b);} //////////////////////////////// inline void solve(){ int M; cin >> M; int num = 1<<M; vector<LL> S(num); for(int i=0;i<num;++i){ cin >> S[i]; S[i] *= S[i]; } vector< vector<LD> > dp(M+1,vector<LD>(num,0)); vector< vector<LD> > P(num,vector<LD>(num)); for(int i=0;i<num;++i){ P[i][i] = 0; for(int j = i+1;j<num;++j){ P[i][j] = (LD)1.0*S[i]/(S[i]+S[j]); P[j][i] = (LD)1.0*S[j]/(S[i]+S[j]); } } for(int i=0;i<num;++i){ dp[0][i] = 1; } LD temp,aaa; for(int m=1;m<M+1;++m){ LL w = 1<<m; int start; start = 1<<(m-1); dp[m][0] = 0.0; for(int i=0;i<start;++i){ temp = P[0][start+i] * dp[m-1][start+i]; dp[m][0] += temp; aaa = dp[m][0]; } dp[m][0] *= dp[m-1][0]; for(int i=start<<1; i<num;++i){ int L = i - (i & (w-1) ); dp[m][i] = 0.0; for(int j = 0;j<w; ++j){ temp = P[i][L+j] * dp[m-1][L+j]; dp[m][i] += temp; aaa = dp[m][i]; } } } cout << dp[M][0] << endl; } signed main(void){ std::cin.tie(0); std::ios::sync_with_stdio(false); std::cout << std::fixed;//小数を10進数表示 cout << setprecision(16);//小数をいっぱい表示する。16? solve(); }