結果
問題 | No.174 カードゲーム(Hard) |
ユーザー | 0w1 |
提出日時 | 2017-01-04 17:07:26 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 286 ms / 2,000 ms |
コード長 | 2,185 bytes |
コンパイル時間 | 1,601 ms |
コンパイル使用メモリ | 167,376 KB |
実行使用メモリ | 20,224 KB |
最終ジャッジ日時 | 2024-07-06 21:40:12 |
合計ジャッジ時間 | 4,079 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 279 ms
19,968 KB |
testcase_03 | AC | 274 ms
19,968 KB |
testcase_04 | AC | 283 ms
19,968 KB |
testcase_05 | AC | 286 ms
20,096 KB |
testcase_06 | AC | 277 ms
20,224 KB |
testcase_07 | AC | 280 ms
20,224 KB |
testcase_08 | AC | 280 ms
20,096 KB |
testcase_09 | AC | 286 ms
19,968 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; typedef vector< int > vi; typedef vector< vi > vvi; typedef vector< ll > vl; typedef vector< vl > vvl; typedef pair< int, int > pii; typedef vector< pii > vp; typedef vector< double > vd; typedef vector< vd > vvd; typedef vector< string > vs; template< class T1, class T2 > int upmin( T1 &x, T2 v ){ if( x > v ){ x = v; return 1; } return 0; } template< class T1, class T2 > int upmax( T1 &x, T2 v ){ if( x < v ){ x = v; return 1; } return 0; } const int INF = 0x3f3f3f3f; const int MAXN = 20; int N; double Pa, Pb; int A[ MAXN ]; int B[ MAXN ]; void init(){ cin >> N; cin >> Pa >> Pb; for( int i = 0; i < N; ++i ){ cin >> A[ i ]; } for( int i = 0; i < N; ++i ){ cin >> B[ i ]; } } double dp_a[ 1 << MAXN ]; double dp_b[ 1 << MAXN ]; double turn_id_a[ MAXN + 1 ][ MAXN + 1 ]; double turn_id_b[ MAXN + 1 ][ MAXN + 1 ]; void build_dp( int a[], double p, double dp[], double turn_id[][ MAXN + 1 ] ){ dp[ 0 ] = 1.0; for( int s = 0; s < 1 << N; ++s ){ int turn = __builtin_popcount( s ); int n = N - turn; int minv = INF; for( int i = 0; i < N; ++i ){ if( ~s & 1 << i ){ upmin( minv, a[ i ] ); } } for( int i = 0; i < N; ++i ){ if( ~s & 1 << i ){ if( a[ i ] == minv ){ dp[ s | 1 << i ] += dp[ s ] * ( n == 1 ? 1.0 : p ); turn_id[ turn ][ i ] += dp[ s ] * ( n == 1 ? 1.0 : p ); } else{ dp[ s | 1 << i ] += dp[ s ] * ( 1.0 - p ) / ( n - 1 ); turn_id[ turn ][ i ] += dp[ s ] * ( 1.0 - p ) / ( n - 1 ); } } } } } void preprocess(){ build_dp( A, Pa, dp_a, turn_id_a ); build_dp( B, Pb, dp_b, turn_id_b ); } void solve(){ double ans = 0.0; for( int i = 0; i < N; ++i ){ for( int j = 0; j < N; ++j ){ for( int k = 0; k < N; ++k ){ if( A[ j ] <= B[ k ] ) continue; ans += turn_id_a[ i ][ j ] * turn_id_b[ i ][ k ] * ( A[ j ] + B[ k ] ); } } } cout << fixed << setprecision( 10 ) << ans << endl; } signed main(){ ios::sync_with_stdio( 0 ); init(); preprocess(); solve(); return 0; }