hdu 4035 Maze(期待更多经典的树DP)

简介:

Maze

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65768/65768 K (Java/Others)
Total Submission(s): 1677    Accepted Submission(s): 638
Special Judge


Problem Description
When wake up, lxhgww find himself in a huge maze.

The maze consisted by N rooms and tunnels connecting these rooms. Each pair of rooms is connected by one and only one path. Initially, lxhgww is in room 1. Each room has a dangerous trap. When lxhgww step into a room, he has a possibility to be killed and restart from room 1. Every room also has a hidden exit. Each time lxhgww comes to a room, he has chance to find the exit and escape from this maze.

Unfortunately, lxhgww has no idea about the structure of the whole maze. Therefore, he just chooses a tunnel randomly each time. When he is in a room, he has the same possibility to choose any tunnel connecting that room (including the tunnel he used to come to that room).
What is the expect number of tunnels he go through before he find the exit?


 

Input
First line is an integer T (T ≤ 30), the number of test cases.

At the beginning of each case is an integer N (2 ≤ N ≤ 10000), indicates the number of rooms in this case.

Then N-1 pairs of integers X, Y (1 ≤ X, Y ≤ N, X ≠ Y) are given, indicate there is a tunnel between room X and room Y.

Finally, N pairs of integers Ki and Ei (0 ≤ Ki, Ei ≤ 100, Ki + Ei ≤ 100, K1 = E1 = 0) are given, indicate the percent of the possibility of been killed and exit in the ith room.
 

Output
For each test case, output one line “Case k: ”. k is the case id, then the expect number of tunnels lxhgww go through before he exit. The answer with relative error less than 0.0001 will get accepted. If it is not possible to escape from the maze, output “impossible”.
 

Sample Input

  
  
3 3 1 2 1 3 0 0 100 0 0 100 3 1 2 2 3 0 0 100 0 0 100 6 1 2 2 3 1 4 4 5 4 6 0 0 20 30 40 30 50 50 70 10 20 60
 

Sample Output

  
  
Case 1: 2.000000 Case 2: impossible Case 3: 2.895522
 

Source
 

Recommend
lcy   |   We have carefully selected several similar problems for you:   4037  4036  4033  4038  4039 
  题意:
一些房间构成一个树形的迷宫。

你開始在以后房间。

你每一个房间你有ki的概率被杀掉。

ei的概率逃出迷宫。假设既没被杀掉又没逃出去。你就会随机选一条能走的边走,最后问你走出这个迷宫须要走的边数的期望。

思路:
对于期望DP。非常easy想到状态E[i]表示眼下在i这个点。逃出迷宫须要走的边数的期望。

然后也能够写出状态转移方程

E[i]=ki*E[1]+0*ei+(1-ei-ki)*Σ(E[j]+1)/eds[i].
j为i所连的点。eds[i]为i的边数。可是发现这个方程全然就不可解。由于方程有环。可是数据量太大高斯消元的话时间复杂明显太高。

所以最后还是没做出来。然后就仅仅有看题解咯。

还是做题太少啊。这题被我忽略了非常重要的一点那就是这是一颗树而不是一张图。

而我的方程全然没体现它是树的特点。

假设依照树来写的话,方程应该是这种。

j为i的儿子。fa为i的父亲。
通过观察。能够设E[i]=A[i]*E[1]+B[i]*E[fa]+C[i]。
然后

然后就上代码了:
#include<algorithm>
#include<iostream>
#include<string.h>
#include<stdio.h>
#include<math.h>
using namespace std;
const int INF=0x3f3f3f3f;
const int maxn=10010;
const double eps=1e-10;//開始-6wa了。精度要高点才行。
typedef long long ll;
struct node
{
    int v;
    node *next;
} ed[maxn<<1],*head[maxn];
int cnt,eds[maxn];
double A[maxn],B[maxn],C[maxn],ki[maxn],ei[maxn];
void adde(int u,int v)
{
    ed[cnt].v=v;
    ed[cnt].next=head[u];
    head[u]=&ed[cnt++];
}
void dfs(int fa,int u)
{
    double sa,sb,sc,mi;
    sa=sb=sc=0;
    for(node *p=head[u];p!=NULL;p=p->next)
    {
        if(p->v==fa)
            continue;
        dfs(u,p->v);
        sa+=A[p->v];
        sb+=B[p->v];
        sc+=C[p->v];
    }
    mi=(1-ki[u]-ei[u])/eds[u];
    A[u]=(ki[u]+mi*sa)/(1-mi*sb);
    B[u]=mi/(1-mi*sb);
    C[u]=(1+mi*sc-ki[u]-ei[u])/(1-mi*sb);
}
int main()
{
    int t,cas=1,n,i,u,v;

    scanf("%d",&t);
    while(t--)
    {
        scanf("%d",&n);
        cnt=0;
        memset(head,0,sizeof head);
        memset(eds,0,sizeof eds);
        for(i=1;i<n;i++)
        {
            scanf("%d%d",&u,&v);
            eds[u]++,eds[v]++;
            adde(u,v);
            adde(v,u);
        }
        for(i=1;i<=n;i++)
        {
            scanf("%lf%lf",&ki[i],&ei[i]);
            ki[i]/=100,ei[i]/=100;
        }
        dfs(-1,1);
        printf("Case %d: ",cas++);
        if(fabs(1-A[1])<eps)
            printf("impossible\n");
        else
            printf("%f\n",C[1]/(1-A[1]));
    }
    return 0;
}



版权声明:本文博客原创文章,博客,未经同意,不得转载。





本文转自mfrbuaa博客园博客,原文链接:http://www.cnblogs.com/mfrbuaa/p/4655446.html,如需转载请自行联系原作者


相关文章
|
存储 网络协议 数据安全/隐私保护
OSI七层模型 (详细讲解,看这一篇就够了)
OSI七层模型 (详细讲解,看这一篇就够了)
11787 0
|
网络协议 算法 网络安全
OSPF简介:链路状态协议的优雅舞蹈
【4月更文挑战第22天】
360 5
|
存储 缓存 开发工具
初识Unity——unity的安装以及工程介绍(安装unity hub、版本选择、中文设置、安装编辑器、Assets文件、Library 文件、[ProjectName].sln 文件)
初识Unity——unity的安装以及工程介绍(安装unity hub、版本选择、中文设置、安装编辑器、Assets文件、Library 文件、[ProjectName].sln 文件)
2384 0
|
弹性计算 资源调度 Serverless
课时1:Serverless 赛题设置和解题思路解析
课时1:Serverless 赛题设置和解题思路解析
|
存储 Java 程序员
Java 泛型之上界下界通配符
本Java教程是为JDK 8编写的。本页描述的示例和实践没有利用后续版本中引入的改进。
396 0
Java 泛型之上界下界通配符
|
C++
C/C++对bool operator < (const p &a)const的认识,运算符重载详解(杂谈)
下面来进行这段代码的分析: struct node {  //定义一个结构体node(节点)    int x;    int y;    int len;   //node中有3个成员变量x,y,len    bool operator  (); 5 //类型转换符 ...
2144 0
|
5天前
|
云安全 人工智能 安全
AI被攻击怎么办?
阿里云提供 AI 全栈安全能力,其中对网络攻击的主动识别、智能阻断与快速响应构成其核心防线,依托原生安全防护为客户筑牢免疫屏障。