結果

問題 No.162 8020運動
ユーザー beetbeet
提出日時 2019-04-01 20:30:23
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 1,743 ms / 5,000 ms
コード長 1,497 bytes
コンパイル時間 3,656 ms
コンパイル使用メモリ 237,068 KB
実行使用メモリ 231,552 KB
最終ジャッジ日時 2024-11-26 08:29:07
合計ジャッジ時間 46,833 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 904 ms
231,424 KB
testcase_01 AC 1,277 ms
231,424 KB
testcase_02 AC 1,498 ms
231,424 KB
testcase_03 AC 1,718 ms
231,424 KB
testcase_04 AC 1,736 ms
231,424 KB
testcase_05 AC 1,726 ms
231,424 KB
testcase_06 AC 1,742 ms
231,424 KB
testcase_07 AC 1,738 ms
231,424 KB
testcase_08 AC 1,726 ms
231,424 KB
testcase_09 AC 893 ms
231,424 KB
testcase_10 AC 1,511 ms
231,424 KB
testcase_11 AC 1,284 ms
231,424 KB
testcase_12 AC 1,086 ms
231,424 KB
testcase_13 AC 1,743 ms
231,424 KB
testcase_14 AC 941 ms
231,424 KB
testcase_15 AC 944 ms
231,424 KB
testcase_16 AC 1,123 ms
231,296 KB
testcase_17 AC 987 ms
231,424 KB
testcase_18 AC 1,681 ms
231,552 KB
testcase_19 AC 1,457 ms
231,296 KB
testcase_20 AC 1,560 ms
231,424 KB
testcase_21 AC 1,564 ms
231,296 KB
testcase_22 AC 1,515 ms
231,552 KB
testcase_23 AC 1,582 ms
231,552 KB
testcase_24 AC 1,530 ms
231,424 KB
testcase_25 AC 1,659 ms
231,296 KB
testcase_26 AC 933 ms
231,424 KB
testcase_27 AC 1,380 ms
231,424 KB
testcase_28 AC 1,704 ms
231,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using Int = long long;
template<typename T1,typename T2> inline void chmin(T1 &a,T2 b){if(a>b) a=b;}
template<typename T1,typename T2> inline void chmax(T1 &a,T2 b){if(a<b) a=b;}


struct Precision{
  Precision(){
    cout<<fixed<<setprecision(12);
  }
}precision_beet;


#include <ext/pb_ds/assoc_container.hpp>
using namespace __gnu_pbds;
template<typename T,typename U> 
using gmap = cc_hash_table<T, U, hash<T> >;

//INSERT ABOVE HERE
signed main(){
  using D = double;
  using M = gmap<int, D>;
  int a;
  cin>>a;
  a=80-a;
  
  D p[3];
  for(int i=0;i<3;i++) cin>>p[i],p[i]/=100;

  const int t=14;
  int s=1<<t;
  
  vector<M> co(s);

  vector<vector<int> > vs(s,vector<int>(t+2));
  for(int b=0;b<s;b++)
    for(int i=0;i<t;i++)
      vs[b][i+1]=(b>>i)&1;
  
  for(int b=0;b<s;b++){
    vector<D> po(t);
    for(int i=0;i<t;i++){
      if((~b>>i)&1) continue;
      po[i]=p[vs[b][i]+vs[b][i+2]];
    }
    
    for(int nb=b;nb;nb=(nb-1)&b){
      D &res=co[b][nb];
      res=1.0;      
      for(int i=0;i<t;i++){
        if((~b>>i)&1) continue;
        if((~nb>>i)&1) res*=po[i];
        else res*=1.0-po[i];
      }
    }
  }
  
  vector<D> dp(s,0);
  dp[s-1]=1.0;
  
  for(int i=0;i<a;i++){
    vector<D> nx(s,0);
    for(int b=0;b<s;b++)
      for(int nb=b;nb;nb=(nb-1)&b)
        nx[nb]+=dp[b]*co[b][nb];
    swap(dp,nx);
  }  
  
  D ans=0;
  for(int b=0;b<s;b++)
    ans+=__builtin_popcount(b)*dp[b];

  cout<<ans*2<<endl;
  return 0;
}
0