当前位置: 代码迷 >> 综合 >> hdu-4405-Aeroplane chess-概率DP
  详细解决方案

hdu-4405-Aeroplane chess-概率DP

热度:60   发布时间:2023-12-19 10:30:16.0

还是那么做。。。

无非加了一条跳转。。。几乎都差不多。。

#include <iostream>
#include<stdio.h>
#include<string.h>
#include<math.h>
using namespace std;
#define maxn 110000
#define eps 1e-6
#define zero(x) (fabs(x)<0?0:x)
double dp[maxn];
int pre[maxn];
int n;
double dos(int x)
{if(x>=n)return 0;if(dp[x]>-0.5)return dp[x];if(pre[x]!=0){dp[x]=dos(pre[x]);return dp[x];}dp[x]=0;for(int i=1;i<=6;i++){dp[x]+=(1.0/6)*(dos(x+i)+1);}return dp[x];
}
int main()
{int m,x,y;while(~scanf("%d%d",&n,&m)&&(n||m)){memset(dp,-1,sizeof(dp));memset(pre,0,sizeof(pre));for(int i=1;i<=m;i++){scanf("%d%d",&x,&y);pre[x]=y;}printf("%.4f\n",dos(0));}return 0;
}