Scout YYF I_poj3744 小灰灰 2021-12-07 13:04 96阅读 0赞 Description YYF is a couragous scout. Now he is on a dangerous mission which is to penetrate into the enemy's base. After overcoming a series difficulties, YYF is now at the start of enemy's famous "mine road". This is a very long road, on which there are numbers of mines. At first, YYF is at step one. For each step after that, YYF will walk one step with a probability of *p*, or jump two step with a probality of 1- *p*. Here is the task, given the place of each mine, please calculate the probality that YYF can go through the "mine road" safely. Input The input contains many test cases ended with **EOF**. Each test case contains two lines. The First line of each test case is *N* (1 ≤ *N* ≤ 10) and *p* (0.25 ≤ *p* ≤ 0.75) seperated by a single blank, standing for the number of mines and the probability to walk one step. The Second line of each test case is N integer standing for the place of N mines. Each integer is in the range of \[1, 100000000\]. Output For each test case, output the probabilty in a single line with the precision to 7 digits after the decimal point. Sample Input 1 0.5 2 2 0.5 2 4 Sample Output 0.5000000 0.2500000 题意:在一条不满地雷的路上,你现在的起点在1处。在N个点处布有地雷,1<=N<=10。地雷点的坐标范围:\[1,100000000\]. 每次前进p的概率前进一步,1-p的概率前进1-p步。问顺利通过这条路的概率。就是不要走到有地雷的地方。 设dp\[i\]表示到达i点的概率,则 初始值 dp\[1\]=1. 很容易想到转移方程: dp\[i\]=p\*dp\[i-1\]+(1-p)\*dp\[i-2\]; 但是由于坐标的范围很大,直接这样求是不行的,而且当中的某些点还存在地雷。 N个有地雷的点的坐标为 x\[1\],x\[2\],x\[3\]\`\`\`\`\`\`\`x\[N\]. 我们把道路分成N段: 1~x\[1\]; x\[1\]+1~x\[2\]; x\[2\]+1~x\[3\]; \` \` \` x\[N-1\]+1~x\[N\]. 这样每一段只有一个地雷。我们只要求得通过每一段的概率。乘法原理相乘就是答案。 对于每一段,通过该段的概率等于1-踩到该段终点的地雷的概率。 就比如第一段 1~x\[1\]. 通过该段其实就相当于是到达x\[1\]+1点。那么p\[x\[1\]+1\]=1-p\[x\[1\]\]. 但是这个前提是p\[1\]=1,即起点的概率等于1.对于后面的段我们也是一样的假设,这样就乘起来就是答案了。 对于每一段的概率的求法可以通过矩阵乘法快速求出来。 #include<cstdio> #include<cstring> #include<algorithm> using namespace std; struct Mat { double d[2][2]; }; #define maxn 30 int x[maxn]; Mat mul(Mat a,Mat b) { Mat temp; for(int i=0;i<2;i++) for(int j=0;j<2;j++) { temp.d[i][j]=0; for(int k=0;k<2;k++) temp.d[i][j]+= (a.d[i][k]* b.d[k][j]); } return temp; } Mat pow(Mat a,int n) { Mat temp; temp=a; Mat ret; ret.d[0][0]=1.0; ret.d[0][1]=0.0; ret.d[1][0]=0.0; ret.d[1][1]=1.0; while(n) { if(n&1) ret=mul(ret,temp); temp=mul(temp,temp); n>>=1; } return ret; } int main() { int n;double p; while(scanf("%d%lf",&n,&p)!=EOF) { Mat tt; tt.d[0][0]=p; tt.d[0][1]=1-p; tt.d[1][0]=1; tt.d[1][1]=0; for(int i=0;i<n;i++) scanf("%d",&x[i]); sort(x,x+n); double ans=1; Mat temp; temp=pow(tt,x[0]-1); ans*=(1-temp.d[0][0]); for(int i=1;i<n;i++) { if(x[i]==x[i-1]) continue; temp=pow(tt,x[i]-x[i-1]-1); ans*=(1-temp.d[0][0]); } printf("%.7f\n",ans); } return 0; } 转载于:https://www.cnblogs.com/hnuicpc0212/archive/2013/03/29/2989629.html
相关 POJ 3744-Scout YYF I【概率DP+矩阵快速幂】 题意:有n个地方有地雷,给出来你下标,对于每个位置i, 你走到i+1的概率是p,走到i+2的概率是1-p,问你不被地雷炸的概率。 思路:这题转移方程很好想,就是f\[i\] 迈不过友情╰/ 2023年06月02日 15:56/ 0 赞/ 120 阅读
相关 POJ 3744 Scout YYF I (矩阵相乘+概率DP) POJ 3744 Scout YYF I (矩阵相乘+概率DP):[http://poj.org/problem?id=3744][http_poj.org_problem_i £神魔★判官ぃ/ 2022年08月21日 12:00/ 0 赞/ 116 阅读
相关 poj3744(概率dp+矩阵快速幂) <table style="background-image:url("http://poj.org/images/table_back.jpg");fon 女爷i/ 2022年05月30日 12:28/ 0 赞/ 227 阅读
相关 TOJ 3744: Transportation Costs 最短路 Spfa 题目链接:http://210.32.82.1/acmhome/problemdetail.do?&method=showdetail&id=3744 这道题对我而言有点难度 左手的ㄟ右手/ 2022年05月25日 23:43/ 0 赞/ 152 阅读
相关 Scout YYF I_poj3744 Description YYF is a couragous scout. Now he is on a dangerous mission which is to pene 小灰灰/ 2021年12月07日 13:04/ 0 赞/ 97 阅读
还没有评论,来说两句吧...