結果

問題 No.174 カードゲーム(Hard)
ユーザー parukiparuki
提出日時 2016-09-02 09:54:47
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 202 ms / 2,000 ms
コード長 1,563 bytes
コンパイル時間 1,699 ms
コンパイル使用メモリ 176,708 KB
実行使用メモリ 11,972 KB
最終ジャッジ日時 2024-07-06 21:39:46
合計ジャッジ時間 3,494 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 197 ms
11,900 KB
testcase_03 AC 197 ms
11,864 KB
testcase_04 AC 196 ms
11,896 KB
testcase_05 AC 202 ms
11,872 KB
testcase_06 AC 199 ms
11,920 KB
testcase_07 AC 202 ms
11,944 KB
testcase_08 AC 197 ms
11,972 KB
testcase_09 AC 199 ms
11,860 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 1 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;
#define FOR(i,j,k) for(int (i)=(j);(i)<(int)(k);++(i))
#define rep(i,j) FOR(i,0,j)
#define each(x,y) for(auto &(x):(y))
#define mp make_pair
#define all(x) (x).begin(),(x).end()
#define debug(x) cout<<#x<<": "<<(x)<<endl
#define smax(x,y) (x)=max((x),(y))
#define smin(x,y) (x)=min((x),(y))
#define MEM(x,y) memset((x),(y),sizeof (x))
#define sz(x) (int)(x).size()
typedef long long ll;
typedef pair<int, int> pii;
typedef vector<int> vi;
typedef vector<ll> vll;

vector<vector<double> > f(int n, double p){
    vector<double> dp(1 << n);
    dp[0] = 1;
    vector<vector<double> > res(n, vector<double>(n));
    rep(S, 1 << n){
        int a = 0, b = 0;
        rep(i, n)b += S >> i & 1;
        rep(i, n)if(!(S >> i & 1)){
            int nS = 1 << i | S;
            double q = 0;
            if(b == n - 1){
                q = 1;
            }else if(!a++){
                q = p;
            } else{
                q = (1 - p) / (n - b - 1);
            }
            dp[nS] += dp[S] * q;
            res[i][b] += q*dp[S];
        }
    }
    return res;
}

int main(){
    int N;
    double PA, PB;
    cin >> N >> PA >> PB;
    vi A(N), B(N);
    rep(i, N)scanf("%d", &A[i]);
    rep(i, N)scanf("%d", &B[i]);
    sort(all(A));
    sort(all(B));

    vector<vector<double> > aa = f(N, PA), bb = f(N, PB);
    
    double ans = 0;
    rep(i, N)rep(j, N)if(A[i] > B[j]){
        int sum = A[i] + B[j];
        rep(k, N){
            ans += sum*aa[i][k] * bb[j][k];
        }
    }
    printf("%0.20f\n", ans);
}
0