LightOJ - 1287 Where to Run —— 期望、状压DP

题目链接:https://vjudge.net/problem/LightOJ-1287

 

1287 - Where to Run
Time Limit: 2 second(s)Memory Limit: 32 MB

Last night you robbed a bank but couldn't escape and when you just got outside today, the police started chasing you. The city, where you live in, consists of some junctions which are connected by some bidirectional roads.

Since police is behind, you have nothing to do but to run. You don't know whether you would get caught or not, but if it is so, you want to run as long as you can. But the major problem is that if you leave a junction, next time you can't come to this junction, because a group of police wait there for you as soon as you left it, while some other keep chasing you.

That's why you have made a plan to fool the police as longer time as possible. The plan is, from your current junction, you first find the number of junctions which are safe (no police are there) and if you go to one of them; you are still able to visit all the safe junctions (in any order) maintaining the above restrictions. You named them 'Elected Junction' or EJ. If there is no such junction; you stop running, because you lose your mind thinking what to do, and the police catch you immediately.

But if there is at least one EJ, you can either fool around the police by staying in the current junction for 5 minutes (actually you just hide there, so the police lose your track thinking which road you might have taken), or you can choose to go to any EJ. The probability of choosing to stay in the current junction or to go to each of the EJ is equal. For example, from the current junction you can go to three EJs, that means the probability of staying in the current junction is 1/4 or the probability to go to any of the EJ is 1/4 since you have four options (either stay in the current junction or go to any of the three junctions).

You can fool the police (by hiding) multiple times in a city, but of course the above conditions should be satisfied. And you have decided not to stop in the middle of any road, because you have the fear that, if you stop in the middle of any road, then the police would surround you from both ends.

Now, given the map of the city and the required time for you to travel in each road of the map; you have to find the expected time for the police to catch you.

Input

Input starts with an integer T (≤ 100), denoting the number of test cases.

Each case starts with a blank line. Next line contains two integers n (1 ≤ n ≤ 15) denoting the number of junctions and m, denoting the number of roads in the city. The junctions are numbered from 0 to n - 1.

Each of the next m lines contains three integers u v w (0 ≤ u, v < n, 0 < w ≤ 100, u ≠ v) meaning that there is a road between junction u and v and you need w minutes to travel in the road. Your home is in junction 0 and you are initially in your home. And you may safely assume that there can be at most one road between a pair of junctions.

Output

For each case, print the case number and the expected time in minutes. Errors less than 10-6 will be ignored.

Sample Input

Output for Sample Input

3

 

3 2

0 1 3

1 2 3

 

4 6

0 1 75

0 2 86

0 3 4

1 2 1

1 3 53

2 3 10

 

5 5

0 1 10

1 2 20

2 3 30

1 3 20

3 4 10

Case 1: 16

Case 2: 106.8333333333

Case 3: 90

Note

For the 3rd case, initially you are in junction 0, and you can either stay here for 5 minutes, or you can move to 1. The probability of staying in 0 is 0.5 and the probability of going to junction 1 is also 0.5. Now if you are in junction 1, either you can stay here for 5 minutes or you can move to junction 2. From junction 1, you cannot move to junction 3, because if you go to junction 3, you can move to junction 2 or junction 4, but if you go to 2, you cannot visit junction 4 (since police would have occupied junction 3), and if you go to junction 4 from 3, you cannot visit junction 2 for the same reason. So, from 1, junction 2 is the only EJ, but junction 3 is not.

 

 

题意:

有n个街口和m条街道, 你后边跟着警察,需要进行逃亡,在每个街口你都有≥1个选择:

1)停留在原地5分钟。

2)如果这个街口可以到xi这个街口, 并且, 通过xi可以遍历完所有未走过的街口,那么就加入选择。

每个选择都是等概率的,求警察抓住你所用时间的期望, 即你无路可走时的时间期望。

 

题解:

1. 对于每个点, 先找出所有的选择, 假设有k个选择。

2. 那么E[u] 表示在街口u出发后走完剩余点的时间期望。

则:E[u] = 1 / k * sigma (E[v] + time[u][v]) + 1 / k * (E[u] + 5)。

化简得:E[u] = (sigma (E[v] + time[u][v]) + 5) / (k - 1)

3. 用[S][u]表示从u点出发, 已完成状态为S,之后走完剩余点所用时间的期望。

 

代码如下:

 1 #include <iostream>
 2 #include <cstdio>
 3 #include <cstring>
 4 #include <algorithm>
 5 #include <vector>
 6 #include <cmath>
 7 #include <queue>
 8 #include <stack>
 9 #include <map>
10 #include <string>
11 #include <set>
12 using namespace std;
13 typedef long long LL;
14 const int INF = 2e9;
15 const LL LNF = 9e18;
16 const int MOD = 1e9+7;
17 const int MAXN = 15+1;
18 
19 int maze[MAXN][MAXN];
20 
21 bool vis[1<<MAXN][MAXN], canReach[1<<MAXN][MAXN];
22 double dp[1<<MAXN][MAXN];
23 bool dfs(int S, int u, int n)
24 {
25     if(S==(1<<n)-1) return dp[S][u] = 0, true;
26     if(vis[S][u]) return canReach[S][u];
27     vis[S][u] = 1;
28 
29     int cnt = 0;
30     double sum = 0;
31     for(int v = 0; v<n; v++)
32     {
33         if(!maze[u][v] || (S&(1<<v))) continue;
34         if(dfs(S|(1<<v),v,n))
35         {
36             canReach[S][u] = true;
37             sum += dp[S|(1<<v)][v]+maze[u][v];
38             cnt++;
39         }
40     }
41     if(!canReach[S][u]) return dp[S][u] = 0, false;
42     return dp[S][u] = (5.0+sum)/cnt, true;
43 }
44 
45 int main()
46 {
47     int T, kase = 0;
48     scanf("%d", &T);
49     while(T--)
50     {
51         int n, m;
52         scanf("%d%d",&n,&m);
53         memset(maze, 0, sizeof(maze));
54         for(int i = 1; i<=m; i++)
55         {
56             int u, v, w;
57             scanf("%d%d%d", &u,&v,&w);
58             maze[u][v] = maze[v][u] = w;
59         }
60         memset(vis, false, sizeof(vis));
61         memset(canReach, false, sizeof(canReach));
62         dfs(1,0,n);
63         printf("Case %d: %.10lf\n", ++kase, dp[1][0]);
64     }
65 }
View Code

 

转载于:https://www.cnblogs.com/DOLFAMINGO/p/8447342.html

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值