結果

問題 No.162 8020運動
ユーザー nebukuro09nebukuro09
提出日時 2018-06-14 10:10:29
言語 C++17(clang)
(17.0.6 + boost 1.87.0)
結果
AC  
実行時間 2,081 ms / 5,000 ms
コード長 1,696 bytes
コンパイル時間 2,742 ms
コンパイル使用メモリ 165,220 KB
実行使用メモリ 200,444 KB
最終ジャッジ日時 2024-11-30 12:34:44
合計ジャッジ時間 45,569 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 991 ms
200,192 KB
testcase_01 AC 989 ms
200,192 KB
testcase_02 AC 1,786 ms
200,192 KB
testcase_03 AC 1,638 ms
200,316 KB
testcase_04 AC 2,058 ms
200,192 KB
testcase_05 AC 2,073 ms
200,312 KB
testcase_06 AC 2,070 ms
200,192 KB
testcase_07 AC 2,081 ms
200,316 KB
testcase_08 AC 2,072 ms
200,192 KB
testcase_09 AC 985 ms
200,188 KB
testcase_10 AC 990 ms
200,184 KB
testcase_11 AC 991 ms
200,316 KB
testcase_12 AC 991 ms
200,444 KB
testcase_13 AC 989 ms
200,312 KB
testcase_14 AC 990 ms
200,192 KB
testcase_15 AC 988 ms
200,192 KB
testcase_16 AC 1,153 ms
200,188 KB
testcase_17 AC 994 ms
200,064 KB
testcase_18 AC 991 ms
200,064 KB
testcase_19 AC 1,739 ms
200,316 KB
testcase_20 AC 990 ms
200,192 KB
testcase_21 AC 1,840 ms
200,192 KB
testcase_22 AC 991 ms
200,312 KB
testcase_23 AC 1,852 ms
200,184 KB
testcase_24 AC 1,779 ms
200,064 KB
testcase_25 AC 1,893 ms
200,188 KB
testcase_26 AC 989 ms
200,312 KB
testcase_27 AC 1,566 ms
200,188 KB
testcase_28 AC 1,609 ms
200,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define REP(i,n) for (int i=0;i<(n);i++)
#define REP2(i,m,n) for (int i=m;i<(n);i++)
typedef long long ll;
typedef long double ld;

unordered_map<int, double> trans[1<<14];
double dp[2][1<<14];

int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);

    const int T = 14;
    int N;
    double P[3];
    cin >> N;
    REP(i, 3) cin >> P[i], P[i] /= 100.0;

    for (int m1 = 0; m1 < (1 << T); ++m1) {
        for(int m2 = m1; m2 >= 0; --m2) {
            m2 &= m1;
            double tmp = 1;
            for (int i = 0; i < T; ++i) {
                if ((1 << i) & m1) {
                    bool l = (i != 0) && ((1 << (i-1)) & m1);
                    bool r = (i != T-1) && ((1 << (i+1)) & m1);
                    double safe;
                    if (l && r)
                        safe = 1 - P[2];
                    else if (l || r)
                        safe = 1 - P[1];
                    else
                        safe = 1 - P[0];
                    tmp *=  ((1 << i) & m2) ? safe : 1 - safe;
                }
            }
            trans[m1][m2] = tmp;
        }
    }

    REP(i, 2) REP(j, 1<<T) dp[i][j] = 0;
    dp[0][(1<<T)-1] = 1;
    int cur = 0, tar = 1;

    REP(i, 80-N) {
        REP(j, 1<<T)
            dp[tar][j] = 0;
        REP(m1, 1<<T) {
            if (dp[cur][m1] == 0)
                continue;
            for (auto itr: trans[m1])
                dp[tar][itr.first] += dp[cur][m1] * itr.second;
        }
        swap(cur, tar);
    }

    double ans = 0;
    REP(mask, 1<<T)
        ans += dp[cur][mask] * __builtin_popcount(mask);
    cout.precision(20);
    cout << fixed  << ans*2 << endl;
}

0