結果

問題 No.162 8020運動
ユーザー maine_honzukimaine_honzuki
提出日時 2020-06-01 16:30:18
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,345 bytes
コンパイル時間 1,579 ms
コンパイル使用メモリ 167,960 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-11-21 22:46:44
合計ジャッジ時間 130,695 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 395 ms
8,832 KB
testcase_01 AC 3,916 ms
8,832 KB
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 AC 394 ms
8,832 KB
testcase_10 TLE -
testcase_11 AC 3,917 ms
8,832 KB
testcase_12 AC 1,973 ms
8,704 KB
testcase_13 TLE -
testcase_14 AC 785 ms
5,248 KB
testcase_15 AC 783 ms
5,248 KB
testcase_16 AC 2,346 ms
5,248 KB
testcase_17 AC 1,176 ms
5,248 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 395 ms
5,248 KB
testcase_27 AC 4,312 ms
5,248 KB
testcase_28 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
    int A, N;
    double P[3];
    cin >> A >> P[0] >> P[1] >> P[2];
    N = 80 - A;
    for (int i = 0; i < 3; i++) {
        P[i] /= 100;
    }

    double dp[2][1 << 14] = {};
    int now = 0, nxt = 1;
    dp[now][(1 << 14) - 1] = 1;

    auto prob = [&](int bit, int mask) {
        double ret = 1;
        for (int x = 0; x < 14; x++) {
            int cnt = 0;
            if (x != 0 && (bit & (1 << (x - 1))))
                cnt++;
            if (x != 13 && (bit & (1 << (x + 1))))
                cnt++;
            if (bit & (1 << x) && !(mask & (1 << x)))
                ret *= P[cnt];
            else if (bit & (1 << x) && (mask & (1 << x)))
                ret *= 1 - P[cnt];
        }
        return ret;
    };

    while (N--) {
        for (int bit = 0; bit < (1 << 14); bit++) {
            dp[nxt][bit] = 0;
        }
        for (int bit = 0; bit < (1 << 14); bit++) {
            for (int mask = bit; mask >= 0; mask--) {
                mask &= bit;
                dp[nxt][mask] += dp[now][bit] * prob(bit, mask);
            }
        }
        swap(now, nxt);
    }

    double ans = 0;
    for (int bit = 0; bit < (1 << 14); bit++) {
        ans += dp[now][bit] * __builtin_popcount(bit);
    }

    cout << fixed << setprecision(10) << ans * 2 << endl;
}
0