結果
問題 | No.162 8020運動 |
ユーザー | t98slider |
提出日時 | 2022-05-30 00:52:49 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,284 bytes |
コンパイル時間 | 1,616 ms |
コンパイル使用メモリ | 172,568 KB |
実行使用メモリ | 19,584 KB |
最終ジャッジ日時 | 2024-09-21 00:45:22 |
合計ジャッジ時間 | 14,698 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 540 ms
14,336 KB |
testcase_01 | TLE | - |
testcase_02 | TLE | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
ソースコード
#include<bits/stdc++.h> using namespace std; int main(){ int A; vector<int> p(3); cin >> A >> p[0] >> p[1] >> p[2]; vector<vector<double>> dp(81,vector<double>(1<<14)); dp[A][(1 << 14) - 1] = 1; auto f = [&](int S, int T){ double res = 1; for(int j = 0; j < 14; j++){ if(~S >> j & 1)continue; int cnt = 0; cnt += ((S >> j + 1) & 1); cnt += (j >= 1 &&((S >> j - 1)& 1)); res *= (T >> j & 1 ? 100 - p[cnt] : p[cnt]) / 100.0; } return res; }; for(int i = A; i < 80; i++){ for(int j = 0; j < (1 << 14); j++){ if(j == 0){ dp[i + 1][j] += dp[i][j]; continue; } for(int k = (j - 1) & j; k > 0; k = (k - 1) & j){ dp[i + 1][k] += f(j, k) * dp[i][j]; } dp[i + 1][j] += f(j, j) * dp[i][j]; dp[i + 1][0] += f(j, 0) * dp[i][j]; } } vector<double> fp(15); for(int j = 0; j < (1 << 14); j++){ fp[__builtin_popcount(j)] += dp[80][j]; } double ans = 0; for(int j = 0; j < 15; j++){ for(int k = 0; k < 15; k++){ ans += (j + k) * fp[j] * fp[k]; } } printf("%.15lf\n",ans); }