結果

問題 No.162 8020運動
ユーザー HachimoriHachimori
提出日時 2015-03-06 00:27:32
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 618 ms / 5,000 ms
コード長 1,514 bytes
コンパイル時間 570 ms
コンパイル使用メモリ 56,112 KB
実行使用メモリ 78,988 KB
最終ジャッジ日時 2024-06-24 09:50:37
合計ジャッジ時間 12,002 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
78,976 KB
testcase_01 AC 273 ms
78,828 KB
testcase_02 AC 399 ms
78,748 KB
testcase_03 AC 506 ms
78,820 KB
testcase_04 AC 500 ms
78,956 KB
testcase_05 AC 514 ms
78,760 KB
testcase_06 AC 511 ms
78,968 KB
testcase_07 AC 556 ms
78,796 KB
testcase_08 AC 558 ms
78,908 KB
testcase_09 AC 27 ms
78,716 KB
testcase_10 AC 427 ms
78,820 KB
testcase_11 AC 278 ms
78,696 KB
testcase_12 AC 118 ms
78,988 KB
testcase_13 AC 511 ms
78,788 KB
testcase_14 AC 38 ms
78,832 KB
testcase_15 AC 36 ms
78,820 KB
testcase_16 AC 127 ms
78,832 KB
testcase_17 AC 54 ms
78,844 KB
testcase_18 AC 501 ms
78,796 KB
testcase_19 AC 345 ms
78,864 KB
testcase_20 AC 382 ms
78,816 KB
testcase_21 AC 422 ms
78,844 KB
testcase_22 AC 397 ms
78,972 KB
testcase_23 AC 511 ms
78,772 KB
testcase_24 AC 483 ms
78,924 KB
testcase_25 AC 544 ms
78,720 KB
testcase_26 AC 29 ms
78,876 KB
testcase_27 AC 345 ms
78,892 KB
testcase_28 AC 618 ms
78,876 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<cstdio>
using namespace std;
const int YEAR = 21;
const int TEETH = 14;
const int MASK = 1 << TEETH;


int limit;
double p[3];

void read() {
    int age;
    cin >> age;

    limit = 80 - age;
    
    int pint0, pint1, pint2;
    cin >> pint0 >> pint1 >> pint2;
    
    p[2] = pint0 * 0.01;
    p[1] = pint1 * 0.01;
    p[0] = pint2 * 0.01;
}


double rec(int year, int nth, bool preExist, int mask, double dp[YEAR][TEETH][2][MASK]) {
    double &ret = dp[year][nth][preExist][mask];
    if (ret > -0.5) return ret;
    
    if (year == limit) {
        return ret = __builtin_popcount(mask);
    }

    if (nth == TEETH)
        return ret = rec(year + 1, 0, 0, mask, dp);

    if (!(mask & (1 << nth)))
        return ret = rec(year, nth + 1, 0, mask, dp);

    int nMissing = 0;
    nMissing += (nth == 0         || !preExist);
    nMissing += (nth == TEETH - 1 || !(mask & (1 << (nth + 1))));
    
    ret = 0;
    ret +=       p[nMissing] * rec(year, nth + 1, 1, mask & ~(1 << nth), dp);
    ret += (1 - p[nMissing]) * rec(year, nth + 1, 1, mask              , dp);
    
    return ret;
}


void work() {
    static double dp[YEAR][TEETH][2][MASK];
    for (int i = 0; i < YEAR; ++i)
        for (int j = 0; j < TEETH; ++j)
            for (int k = 0; k < 2; ++k)
                for (int l = 0; l < MASK; ++l)
                    dp[i][j][k][l] = -1;
    
    printf("%.10lf\n", rec(0, 0, 0, (1 << TEETH) - 1, dp) * 2);
}


int main() {
    read();
    work();
    return 0;
}
0