HDU 5045 Contest 期望+狀壓dp 2014 ACM/ICPC Asia Regional Shanghai Online,hduicpc

來源:互聯網
上載者:User

HDU 5045 Contest 期望+狀壓dp 2014 ACM/ICPC Asia Regional Shanghai Online,hduicpc

題意:

給定n個人 m個題目

下面n*m的矩陣表示每個人解出每道題的機率


我們可以得到一個模長為m的集合{1,2,3,1,2}

代表每道題是誰解出的。

有眾多集合,且獲得這個集合有一個期望,求期望最大的那個集合 ( 的期望值是多少)

一個限制: 對於集合 {1,1,2,3,1} 這樣是不合法的(即從[1,n]題必須是1-n的排列,然後[n+1, 2n]題也是一個排列)

然後狀壓dp

#include <cstdio>#include <iostream>#include <cstring>#include <algorithm>#include <vector>using namespace std;typedef long long ll;const int M= 1000 +2;const int N= 10+2;const int S= (1 << 10) + 10;double d[M][S], p[N][M];int main() {    int cas, mx, n, m, to;    scanf("%d", &cas);    for(int T= 1; T<= cas; ++T) {        scanf("%d%d", &n, &m);        for (int i = 0; i < n; ++i)            for (int j = 0; j < m; ++j)                scanf("%lf", &p[i][j]);        mx = (1 << n) - 1;        memset(d, 0, sizeof d);        d[0][0] = 0;        for (int i = 0; i < m; ++i) {            int s = (1 << (i % n)) - 1;            while (s < mx) {                int x = s & -s;                int y = s + x;                for (int k = 0; k < n; ++k)                    if (!(s >> k & 1)) {                        to = s | (1 << k);                        if (to == mx)                            to = 0;                        d[i + 1][to] = max(d[i + 1][to], d[i][s] * (1.0 - p[k][i]) + (d[i][s] + 1) * p[k][i]);                    }                if (s == 0) break;                s = ((s & ~y) / x >> 1) | y;            }        }        double ans = 0;        for (int i = 0; i < mx; ++i)            ans = max(ans, d[m][i]);        printf("Case #%d: %.5f\n", T, ans);    }    return 0;}



2012 ACM/ICPC Asia Regional Chengdu Online多少隊?

130隊
 
The 2009 ACM-ICPC Asia Ningbo Regional Online Contest - D

呵呵……我也在做,交流一下吧,就是用一個菱形(被定義成曼哈頓距離的菱形),就是旋轉45度的正方形,一個嵌套一個,求圓心
 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.