题目链接:http://poj.org/problem?id=3744

  简单的概率DP,分段处理,遇到mine特殊处理。f[i]=f[i-1]*p+f[i-2]*(1-p),i!=w+1,w为mine点。这个概率显然是收敛的,可以转化为(f[i]-f[i-1])/(f[i-1]-f[i-2])=p-1。题目要求精度为1e-7,在分段求的时候我们完全可以控制进度,精度超出了1e-7就不运算下去了。当然此题还可以用矩阵乘法来优化。

  考虑概率收敛代码:

 1 //STATUS:C++_AC_0MS_164KB
 2 #include <functional>
 3 #include <algorithm>
 4 #include <iostream>
 5 //#include <ext/rope>
 6 #include <fstream>
 7 #include <sstream>
 8 #include <iomanip>
 9 #include <numeric>
10 #include <cstring>
11 #include <cassert>
12 #include <cstdio>
13 #include <string>
14 #include <vector>
15 #include <bitset>
16 #include <queue>
17 #include <stack>
18 #include <cmath>
19 #include <ctime>
20 #include <list>
21 #include <set>
22 #include <map>
23 using namespace std;
24 //#pragma comment(linker,"/STACK:102400000,102400000")
25 //using namespace __gnu_cxx;
26 //define
27 #define pii pair<int,int>
28 #define mem(a,b) memset(a,b,sizeof(a))
29 #define lson l,mid,rt<<1
30 #define rson mid+1,r,rt<<1|1
31 #define PI acos(-1.0)
32 //typedef
33 typedef __int64 LL;
34 typedef unsigned __int64 ULL;
35 //const
36 const int N=200010;
37 const int INF=0x3f3f3f3f;
38 const int MOD=10007,STA=8000010;
39 const LL LNF=1LL<<55;
40 const double EPS=1e-14;
41 const double OO=1e30;
42 const int dx[4]={-1,0,1,0};
43 const int dy[4]={0,1,0,-1};
44 const int day[13]={0,31,28,31,30,31,30,31,31,30,31,30,31};
45 //Daily Use ...
46 inline int sign(double x){return (x>EPS)-(x<-EPS);}
47 template<class T> T gcd(T a,T b){return b?gcd(b,a%b):a;}
48 template<class T> T lcm(T a,T b){return a/gcd(a,b)*b;}
49 template<class T> inline T lcm(T a,T b,T d){return a/d*b;}
50 template<class T> inline T Min(T a,T b){return a<b?a:b;}
51 template<class T> inline T Max(T a,T b){return a>b?a:b;}
52 template<class T> inline T Min(T a,T b,T c){return min(min(a, b),c);}
53 template<class T> inline T Max(T a,T b,T c){return max(max(a, b),c);}
54 template<class T> inline T Min(T a,T b,T c,T d){return min(min(a, b),min(c,d));}
55 template<class T> inline T Max(T a,T b,T c,T d){return max(max(a, b),max(c,d));}
56 //End
57
58 double f1,f2,f3;
59 double p;
60 int n;
61
62 int main(){
63  //   freopen("in.txt","r",stdin);
64     int i,j,w[12],ok;
65     while(~scanf("%d%lf",&n,&p)){
66         f1=0;f2=1;
67         ok=1;
68         for(i=0;i<n;i++)scanf("%d",&w[i]);
69         sort(w,w+n);
70         for(i=1,j=0;j<n;j++){
71             if(w[j]==i)ok=0;
72             for(;i<w[j]-1 && sign(f2-f1);i++){
73                 f3=f2*p+f1*(1-p);
74                 f1=f2,f2=f3;
75             }
76             i=w[j]+1;
77             f2*=1-p;
78             f1=0;
79         }
80         printf("%.7lf\n",ok?f2:0.0);
81     }
82     return 0;
83 }

  

  矩阵乘法优化:

  1 //STATUS:C++_AC_16MS_164KB
  2 #include <functional>
  3 #include <algorithm>
  4 #include <iostream>
  5 //#include <ext/rope>
  6 #include <fstream>
  7 #include <sstream>
  8 #include <iomanip>
  9 #include <numeric>
 10 #include <cstring>
 11 #include <cassert>
 12 #include <cstdio>
 13 #include <string>
 14 #include <vector>
 15 #include <bitset>
 16 #include <queue>
 17 #include <stack>
 18 #include <cmath>
 19 #include <ctime>
 20 #include <list>
 21 #include <set>
 22 #include <map>
 23 using namespace std;
 24 //#pragma comment(linker,"/STACK:102400000,102400000")
 25 //using namespace __gnu_cxx;
 26 //define
 27 #define pii pair<int,int>
 28 #define mem(a,b) memset(a,b,sizeof(a))
 29 #define lson l,mid,rt<<1
 30 #define rson mid+1,r,rt<<1|1
 31 #define PI acos(-1.0)
 32 //typedef
 33 typedef __int64 LL;
 34 typedef unsigned __int64 ULL;
 35 //const
 36 const int N=200010;
 37 const int INF=0x3f3f3f3f;
 38 const int MOD=10007,STA=8000010;
 39 const LL LNF=1LL<<55;
 40 const double EPS=1e-14;
 41 const double OO=1e30;
 42 const int dx[4]={-1,0,1,0};
 43 const int dy[4]={0,1,0,-1};
 44 const int day[13]={0,31,28,31,30,31,30,31,31,30,31,30,31};
 45 //Daily Use ...
 46 inline int sign(double x){return (x>EPS)-(x<-EPS);}
 47 template<class T> T gcd(T a,T b){return b?gcd(b,a%b):a;}
 48 template<class T> T lcm(T a,T b){return a/gcd(a,b)*b;}
 49 template<class T> inline T lcm(T a,T b,T d){return a/d*b;}
 50 template<class T> inline T Min(T a,T b){return a<b?a:b;}
 51 template<class T> inline T Max(T a,T b){return a>b?a:b;}
 52 template<class T> inline T Min(T a,T b,T c){return min(min(a, b),c);}
 53 template<class T> inline T Max(T a,T b,T c){return max(max(a, b),c);}
 54 template<class T> inline T Min(T a,T b,T c,T d){return min(min(a, b),min(c,d));}
 55 template<class T> inline T Max(T a,T b,T c,T d){return max(max(a, b),max(c,d));}
 56 //End
 57
 58 double p;
 59 int n;
 60
 61 const int size=2;
 62
 63 struct Matrix{
 64     double ma[size][size];
 65     Matrix friend operator * (const Matrix a,const Matrix b){
 66         Matrix ret;
 67         mem(ret.ma,0);
 68         int i,j,k;
 69         for(i=0;i<size;i++)
 70             for(j=0;j<size;j++)
 71                 for(k=0;k<size;k++)
 72                     ret.ma[i][j]=ret.ma[i][j]+a.ma[i][k]*b.ma[k][j];
 73         return ret;
 74     }
 75 }A;
 76
 77 Matrix mutilpow(int k)
 78 {
 79     int i,j;
 80     Matrix ret;
 81     mem(ret.ma,0);
 82     for(i=0;i<size;i++)
 83         ret.ma[i][i]=1;
 84     for(;k;k>>=1){
 85         if(k&1)ret=ret*A;
 86         A=A*A;
 87     }
 88     return ret;
 89 }
 90
 91 int main(){
 92  //   freopen("in.txt","r",stdin);
 93     int i,j,w[12],ok;
 94     Matrix S,t;
 95     double F[2];
 96     while(~scanf("%d%lf",&n,&p)){
 97         S.ma[0][0]=0,S.ma[0][1]=1;
 98         S.ma[1][0]=1-p,S.ma[1][1]=p;
 99         F[0]=0,F[1]=1;
100         ok=1;
101         for(i=0;i<n;i++)
102             scanf("%d",&w[i]);
103         sort(w,w+n);
104         for(i=0,j=1;i<n;i++){
105             if(w[i]==j){ok=0;break;}
106             A=S;
107             t=mutilpow(w[i]-j-1);
108             F[1]=(t.ma[1][0]*F[0]+t.ma[1][1]*F[1])*(1-p);
109             F[0]=0;
110             j=w[i]+1;
111         }
112
113         printf("%.7lf\n",ok?F[1]:0.0);
114     }
115     return 0;
116 }

转载于:https://www.cnblogs.com/zhsl/p/3238708.html

POJ-3744 Scout YYF I 概率DP相关推荐

  1. POJ 3744 Scout YYF I 期望dp

    给出n≤10n\leq10n≤10个地雷,它们的位置在[1,1e8][1,1e8][1,1e8]之间.然后一个人从111出发,有PPP的概率走一步,有1−P1-P1−P的概率走两步.求问安全离开的雷区 ...

  2. POJ 3744:Scout YYF I 概率DP+特征方程+快速幂

    Scout YYF I 题目链接: http://poj.org/problem?id=3744 题意: 有个人要到一个叫"mine road"的地方,路线是一条直线,起点在1,路 ...

  3. POJ 3744(Scout YYF I )

    题意: 从1开始每次有p的概率往前跳一步,1-p的概率跳两步.给定n个点以及它们的坐标,若跳到这些点上则算失败,求安全经过这些点的概率. 分析:容易推出 dp[i] = dp[i-1]*p +  dp ...

  4. 【原创】概率DP总结 by kuangbin

    概率DP主要用于求解期望.概率等题目. 转移方程有时候比较灵活. 一般求概率是正推,求期望是逆推.通过题目可以体会到这点. 首先先推荐几篇参考的论文: <信息学竞赛中概率问题求解初探> & ...

  5. 关于概率dp的个人理解与总结

    原文来自:http://blog.csdn.net/wdcjdtc/article/details/38424029 首先,概率dp主要解决的是关于概率问题和期望问题的求解. 难点和普通dp一样在于d ...

  6. poj 3071 Football(概率dp)

    http://poj.org/problem? id=3071 大致题意:有2^n个足球队分成n组打比赛.给出一个矩阵a[][],a[i][j]表示i队赢得j队的概率.n次比赛的流程像这样France ...

  7. Collecting Bugs POJ - 2096(基础概率dp+期望模板)

    题意: 有s个系统,n种bug,小明每天找出一个bug,可能是任意一个系统的,可能是任意一种bug,即是某一系统的bug概率是1/s,是某一种bug概率是1/n. 求他找到s个系统的bug,n种bug ...

  8. poj 1322 Chocolate (概率dp)

    ///有c种不同颜色的巧克力.一个个的取.当发现有同样的颜色的就吃掉.去了n个后.到最后还剩m个的概率 ///dp[i][j]表示取了i个还剩j个的概率 ///当m+n为奇时,概率为0 # inclu ...

  9. POJ 3133 Manhattan Wiring (插头DP)

    Manhattan Wiring Time Limit: 5000MS   Memory Limit: 65536K Total Submissions: 1110   Accepted: 634 D ...

  10. 【BZOJ - 3036】绿豆蛙的归宿(概率DAG图dp,拓扑排序,概率dp,期望的线性性)

    题干: 随着新版百度空间的下线,Blog宠物绿豆蛙完成了它的使命,去寻找它新的归宿. 给出一个有向无环的连通图,起点为1终点为N,每条边都有一个长度.绿豆蛙从起点出发,走向终点. 到达每一个顶点时,如 ...

最新文章

  1. 【初阶】unity3d官方案例_太空射击SpacingShooter 学习笔记 显示分数时,如何让函数之间相互交流...
  2. git checkout和git reset的一些区别以及配置git简写命令
  3. python语言百度百科-Python 语言下数据驱动DDT的应用
  4. 如何利用OpenSSL生成证书
  5. Linux内核源代码获取方法
  6. JavaScript 读取CSV文件并转为js对象
  7. Spring框架–应用程序上下文–到达应用程序上下文的三种方法
  8. lambda函数,函数符_为什么您永远不应该在Lambda函数中使用print()
  9. 自学前端开发:想要学习成为一名优秀的前端开发者,代码之外需要关注的问题
  10. linux用grep查找文件内容
  11. Linux常用命令3
  12. 二、saltstack基础配置
  13. python自制一款职位分析器,一键生成岗位分析报告
  14. 做新时代的忠诚爱国者写一篇议论文800字
  15. TDengineGUI无法连接TDengine
  16. pycharm配置python2.7.6环境_pycharm如何配置python环境
  17. AlexNet 之karas实现
  18. 【面试题】HTML篇(一)
  19. class_addMethod详解
  20. 阿里云dos木马及xmrig矿毒

热门文章

  1. GFlags使用文档
  2. 阿里Sophix热修复框架使用入门
  3. 三.修改Jenkins插件下载路径
  4. SNS光纤交换机命令及作用
  5. 图像识别利用计算机对图像进行,图像识别技术的应用与发展
  6. 获赞36w,小红书近期的流行趋势是什么?
  7. 公众号----微信公众号后台设置
  8. 锂电池充电管理芯片ic XSC01支持筋膜枪8.4V12.6V16.8充电
  9. 【Matlab应用】:相控阵天线方向图合成及波束扫描算法实现
  10. 股市最好用的大数据软件_炒股软件app哪个最好用?老股民说你有这个就够了