日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問(wèn) 生活随笔!

生活随笔

當(dāng)前位置: 首頁(yè) > 编程资源 > 编程问答 >内容正文

编程问答

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

發(fā)布時(shí)間:2025/3/21 编程问答 32 豆豆
生活随笔 收集整理的這篇文章主要介紹了 Educational Codeforces Round 13 E. Another Sith Tournament 状压dp 小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.

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個(gè)人在決斗,兩個(gè)決斗,然后勝利者繼續(xù)決斗

你是0號(hào)人物,你可以安排比賽順序,問(wèn)你最大的獲勝概率是多少

題解:

狀壓dp

你是最后一個(gè)上場(chǎng)的人,這個(gè)結(jié)論猜一下就好了。

然后倒著做。

dp[i][j]表示你還要干死狀態(tài)i的人,當(dāng)前正在打的人是j,然后你獲勝的最大概率是多少

然后直接狀壓dp莽一波就好了。

注意,這個(gè)狀態(tài)是倒著的。

代碼

#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); }

總結(jié)

以上是生活随笔為你收集整理的Educational Codeforces Round 13 E. Another Sith Tournament 状压dp的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。

如果覺(jué)得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。