結果
問題 | No.66 輝け☆全国たこやき杯 |
ユーザー | h_noson |
提出日時 | 2016-03-23 14:01:28 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 978 bytes |
コンパイル時間 | 538 ms |
コンパイル使用メモリ | 61,032 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-10-01 21:25:03 |
合計ジャッジ時間 | 1,183 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | - |
ソースコード
#include <iostream> #include <vector> #include <algorithm> using namespace std; #define RREP(i,s,e) for (i = s; i >= e; i--) #define rrep(i,n) RREP(i,n,0) #define REP(i,s,e) for (i = s; i < e; i++) #define rep(i,n) REP(i,0,n) #define INF 1e8 typedef long long ll; double prob(double a, double b) { return a*a/(a*a+b*b); } int main() { int i, j, k, m; double ans = 1; double s[1<<10]; double p[11][1<<10]; cin >> m; rep (i,1<<m) cin >> s[i]; fill (p[0],p[0]+(1<<m),1); REP (i,1,m+1) { rep (j,1<<m) { p[i][j] = 0; int base = j/(1<<i)*(1<<i); rep (k,1<<i) { if (j/(1<<(i-1)) != (base+k)/(1<<(i-1))) p[i][j] += p[i-1][base+k]*prob(s[j],s[base+k]); } p[i][j] *= p[i-1][j]; } } REP (i,1,m+1) { rep (j,1<<m) cout << p[i][j] << " "; cout << endl; } cout << p[m][0] << endl; return 0; }