結果

問題 No.162 8020運動
ユーザー tottoripapertottoripaper
提出日時 2015-03-28 17:10:54
言語 C++11
(gcc 11.4.0)
結果
RE  
実行時間 -
コード長 1,305 bytes
コンパイル時間 347 ms
コンパイル使用メモリ 39,808 KB
実行使用メモリ 82,048 KB
最終ジャッジ日時 2024-06-29 01:31:33
合計ジャッジ時間 28,870 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 653 ms
79,616 KB
testcase_01 AC 760 ms
80,768 KB
testcase_02 AC 815 ms
81,408 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 AC 659 ms
79,744 KB
testcase_10 AC 818 ms
81,408 KB
testcase_11 AC 761 ms
80,768 KB
testcase_12 AC 703 ms
80,128 KB
testcase_13 RE -
testcase_14 AC 667 ms
79,744 KB
testcase_15 AC 660 ms
79,744 KB
testcase_16 AC 704 ms
80,256 KB
testcase_17 AC 677 ms
79,872 KB
testcase_18 AC 861 ms
81,920 KB
testcase_19 AC 796 ms
81,280 KB
testcase_20 AC 819 ms
81,536 KB
testcase_21 AC 823 ms
81,536 KB
testcase_22 AC 813 ms
81,408 KB
testcase_23 AC 826 ms
81,536 KB
testcase_24 AC 816 ms
81,408 KB
testcase_25 AC 842 ms
81,664 KB
testcase_26 AC 652 ms
79,616 KB
testcase_27 AC 773 ms
80,896 KB
testcase_28 AC 860 ms
81,920 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:34:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   34 |     scanf("%d", &N);
      |     ~~~~~^~~~~~~~~~
main.cpp:37:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   37 |     scanf("%lf %lf %lf", P, P+1, P+2);
      |     ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

// Wrongri-La Shower

#include <cstdio>
#include <vector>

typedef std::pair<int,double> Pair;

double P[3]; // 虫歯に「なる」確率
std::vector<Pair> ns[1<<14];
double dp[20][1<<14];

double probability(int prev, int next){
    double res = 1.0;
    for(int i=0;i<14;i++){
        if(!(prev >> i & 1)){continue;}
        
        double p;
        if(i == 0){
            p = P[prev >> 1 & 1];
        }else if(i == 13){
            p = P[prev >> 12 & 1];
        }else{
            p = P[(prev >> i-1 & 1) + (prev >> i+1 & 1)];
        }

        res *= next >> i & 1 ? 1.0-p : p;
    }

    return res;
}

int main(){
    int N;
    scanf("%d", &N);
    N = 80-N;

    scanf("%lf %lf %lf", P, P+1, P+2);
    for(int i=0;i<3;i++){P[i] /= 100;}

    
    for(int i=0;i<1<<14;i++){
        for(int j=0;j<1<<14;j++){
            if((i & j) != j){continue;}

            ns[i].push_back(std::make_pair(j, probability(i, j)));
        }
    }

    dp[0][(1<<14)-1] = 1.0;
    for(int i=0;i<N;i++){
        for(int j=0;j<1<<14;j++){
            for(const auto& p : ns[j]){
                dp[i+1][p.first] += dp[i][j] * p.second;
            }
        }
    }

    double res = 0.0;
    for(int i=0;i<1<<14;i++){
        res += dp[N][i] * __builtin_popcount(i);
    }

    printf("%.12f\n", res * 2);
}
0