POJ 3071 Football (概率dp)

网友投稿 672 2022-10-03

POJ 3071 Football (概率dp)

POJ 3071 Football (概率dp)

Description

Consider a single-elimination football tournament involving 2n teams, denoted 1, 2, …, 2n. In each round of the tournament, all teams still in the tournament are placed in a list in order of increasing index. Then, the first team in the list plays the second team, the third team plays the fourth team, etc. The winners of these matches advance to the next round, and the losers are eliminated. After n rounds, only one team remains undefeated; this team is declared the winner.Given a matrix P = [pij] such that pij is the probability that team i will beat team j in a match determine which team is most likely to win the tournament.

Input

The input test file will contain multiple test cases. Each test case will begin with a single line containing n (1 ≤ n ≤ 7). The next 2n lines each contain 2n values; here, the jth value on the ith line represents pij. The matrix P will satisfy the constraints that pij = 1.0 − pji for all i ≠ j, and pii = 0.0 for all i. The end-of-file is denoted by a single line containing the number −1. Note that each of the matrix entries in this problem is given as a floating-point value. To avoid precision problems, make sure that you use either the double data type instead of float.

Output

The output file should contain a single line for each test case indicating the number of the team most likely to win. To prevent floating-point precision issues, it is guaranteed that the difference in win probability for the top two teams will be at least 0.01.

Sample Input

20.0 0.1 0.2 0.30.9 0.0 0.4 0.50.8 0.6 0.0 0.60.7 0.5 0.4 0.0-1

Sample Output

2

题意

有 2n

思路

概率DP

dp[i][j] 代表在第 i 轮中,队伍 j

则 dp[i][j]=sum(dp[i−1][j]×dp[i−1][k]×p[j][k])

表示在第 i 轮中 j 的获胜概率等于 i−1 轮中 j 取得了胜利并且打赢了 k (前提 k 也在第 i−1

AC 代码

#include#include#include#include#includeusing namespace std;double a[205][205];double dp[10][205];int n,N;inline bool jud(int k,int i,int j) //判断两队是否相邻{ i>>=k-1; j>>=k-1; return (i^1)==j;}void solve(){ memset(dp,0,sizeof(dp)); for(int i=0; idp[n][ans]) ans=i; printf("%d\n",ans+1);}int main(){ while(~scanf("%d",&n)&&n!=-1) { N=1<

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:怎么链接到小程序页面(怎么链接到小程序页面打开)
下一篇:怎么修改微信小程序名称(怎么修改微信小程序名称和头像)
相关文章

 发表评论

暂时没有评论,来抢沙发吧~