結果
問題 | No.66 輝け☆全国たこやき杯 |
ユーザー | fine |
提出日時 | 2017-02-28 02:31:00 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 653 bytes |
コンパイル時間 | 1,834 ms |
コンパイル使用メモリ | 168,520 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-11 20:30:46 |
合計ジャッジ時間 | 2,431 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 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 | - |
ソースコード
#include <bits/stdc++.h> using namespace std; double dp[11][1050]; int main() { cin.tie(0); ios::sync_with_stdio(false); int m; cin >> m; int n = (1 << m); vector<double> s(n); for (int i = 0; i < n; i++) { cin >> s[i]; dp[0][i] = 1.0; } for (int i = 1; i <= m; i++) { for (int j = 0; j < n; j++) { int c = 1 << (i - 1); int k = j ^ c; for (int e = k, l = k + c; e < l; e++) { double tmp = s[j] * s[j]; dp[i][j] += dp[i - 1][e] * tmp / (tmp + s[e] * s[e]); } dp[i][j] *= dp[i - 1][j]; if (i == m && j == 0) { cout << fixed << setprecision(10) << dp[m][0] << endl; return 0; } } } return 0; }