Educational Codeforces Round 13 E. Another Sith Tournament 状压dp

E. Another Sith Tournament

题目连接:

http://www.codeforces.com/contest/678/problem/E

Description

The rules of Sith Tournament are well known to everyone. n Sith take part in the Tournament. The Tournament starts with the random choice of two Sith who will fight in the first battle. As one of them loses, his place is taken by the next randomly chosen Sith who didn’t fight before. Does it need to be said that each battle in the Sith Tournament ends with a death of one of opponents? The Tournament ends when the only Sith remains alive.

Jedi Ivan accidentally appeared in the list of the participants in the Sith Tournament. However, his skills in the Light Side of the Force are so strong so he can influence the choice of participants either who start the Tournament or who take the loser’s place after each battle. Of course, he won’t miss his chance to take advantage of it. Help him to calculate the probability of his victory.

Input

The first line contains a single integer n (1 ≤ n ≤ 18) — the number of participants of the Sith Tournament.

Each of the next n lines contains n real numbers, which form a matrix pij (0 ≤ pij ≤ 1). Each its element pij is the probability that the i-th participant defeats the j-th in a duel.

The elements on the main diagonal pii are equal to zero. For all different i, j the equality pij + pji = 1 holds. All probabilities are given with no more than six decimal places.

Jedi Ivan is the number 1 in the list of the participants.

Output

Output a real number — the probability that Jedi Ivan will stay alive after the Tournament. Absolute or relative error of the answer must not exceed 10 - 6.

Sample Input

3
0.0 0.5 0.8
0.5 0.0 0.4
0.2 0.6 0.0

Sample Output

0.680000000000000

Hint

题意

有n个人在决斗,两个决斗,然后胜利者继续决斗

你是0号人物,你可以安排比赛顺序,问你最大的获胜概率是多少

题解:

状压dp

你是最后一个上场的人,这个结论猜一下就好了。

然后倒着做。

dp[i][j]表示你还要干死状态i的人,当前正在打的人是j,然后你获胜的最大概率是多少

然后直接状压dp莽一波就好了。

注意,这个状态是倒着的。

代码

#include<bits/stdc++.h>
using namespace std;
const int maxn = 18;
double p[maxn][maxn],dp[1<<maxn][maxn];
int main()
{
    int n;
    scanf("%d",&n);
    for(int i=0;i<n;i++)
        for(int j=0;j<n;j++)
            cin>>p[i][j];
    dp[1][0]=1;
    for(int i=0;i<(1<<n);i++)
    {
        for(int j=0;j<n;j++)if(i&(1<<j))
        {
            for(int k=0;k<n;k++)if(i&(1<<k)&&(k!=j))
                dp[i][j]=max(dp[i][j],p[j][k]*dp[i^(1<<k)][j]+p[k][j]*dp[i^(1<<j)][k]);
        }
    }
    double ans = 0;
    for(int i=0;i<n;i++)
        ans=max(ans,dp[(1<<n)-1][i]);
    printf("%.12f\n",ans);
}
    原文作者:qscqesze
    原文地址: https://www.cnblogs.com/qscqesze/p/5582858.html
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞