HDU 5001 Walk 概率DP入门!

来源:互联网 发布:linux gbk 乱码 编辑:程序博客网 时间:2024/04/30 04:08

题目描述:

Problem Description
I used to think I could be anything, but now I know that I couldn’t do anything. So I started traveling.

The nation looks like a connected bidirectional graph, and I am randomly walking on it. It means when I am at node i, I will travel to an adjacent node with the same probability in the next step. I will pick up the start node randomly (each node in the graph has the same probability.), and travel for d steps, noting that I may go through some nodes multiple times.

If I miss some sights at a node, it will make me unhappy. So I wonder for each node, what is the probability that my path doesn’t contain it.

Input
The first line contains an integer T, denoting the number of the test cases.

For each test case, the first line contains 3 integers n, m and d, denoting the number of vertices, the number of edges and the number of steps respectively. Then m lines follows, each containing two integers a and b, denoting there is an edge between node a and node b.

T<=20, n<=50, n-1<=m<=n*(n-1)/2, 1<=d<=10000. There is no self-loops or multiple edges in the graph, and the graph is connected. The nodes are indexed from 1.

Output
For each test cases, output n lines, the i-th line containing the desired probability for the i-th node.

Your answer will be accepted if its absolute error doesn’t exceed 1e-5.

Sample Input

25 10 1001 22 33 44 51 52 43 52 51 41 310 10 101 22 33 44 55 66 77 88 99 104 9

Sample Output

0.00000000000.00000000000.00000000000.00000000000.00000000000.69933179670.58642849520.44408608210.22758969910.42940745910.48510487420.48960188420.45250442500.34065674830.6421630037

Source
2014 ACM/ICPC Asia Regional Anshan Online

题目分析:

在一个n个节点的无向图,有m条边,你有d次走这个图,每次走的方向都是随机的,你的初始位置也是随机的。问,走不到这每一个点的概率分别是多少?
概率dp的入门题。
代码有详细解释。

代码如下:

#include <stdio.h>#include <string.h>#include <iostream>#include <algorithm>#include <vector>#include <queue>#include <stack>#include <set>#include <map>#include <string>#include <math.h>#include <stdlib.h>#include <time.h>using namespace std;typedef long long ll;const int INF = 0x3f3f3f3f;const int MAXN = 55;const int MAXD = 10050;vector <int>edge[MAXN];double dp[MAXD][MAXN];//dp[i][j]表示第i步走到j点的概率int main(){    int T;    scanf("%d",&T);    while(T--)    {        int n,m,d;        scanf("%d%d%d",&n,&m,&d);        for(int i=0; i<MAXN; i++) edge[i].clear();        for(int i=1; i<=m; i++)        {            int u,v;            scanf("%d%d",&u,&v);            edge[u].push_back(v);            edge[v].push_back(u);        }        for(int k=1; k<=n; k++)        {            memset(dp,0,sizeof(dp));            for(int i=1; i<=n; i++) dp[0][i]=1.0/n;//有1/n概率i为初始的位置            for(int i=0; i<d; i++)            {                for(int j=1; j<=n; j++)                {                    if (k==j) continue;                    for(int l=0; l<edge[j].size(); l++)                    {                        dp[i+1][edge[j][l]]+=dp[i][j]*1.0/edge[j].size();                        //从j点有1/edge[j].size()的概率走到其连着的任意点                    }                   }            }            double ans=0.0;            for(int i=1; i<=n; i++)            {                if (k!=i) ans+=dp[d][i];//把所有达到别的点的概率相加就是走不到k点概率            }            printf("%.10lf\n",ans);        }    }    return 0;}
0 0