結果
問題 | No.173 カードゲーム(Medium) |
ユーザー | fura |
提出日時 | 2020-07-31 02:46:29 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 850 bytes |
コンパイル時間 | 2,519 ms |
コンパイル使用メモリ | 204,440 KB |
実行使用メモリ | 8,576 KB |
最終ジャッジ日時 | 2024-07-05 05:51:42 |
合計ジャッジ時間 | 25,124 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 16 ms
6,820 KB |
testcase_01 | AC | 232 ms
5,376 KB |
testcase_02 | TLE | - |
testcase_03 | TLE | - |
testcase_04 | TLE | - |
testcase_05 | AC | 2,695 ms
5,376 KB |
testcase_06 | AC | 1,994 ms
5,376 KB |
testcase_07 | AC | 1,574 ms
5,376 KB |
testcase_08 | AC | 1,547 ms
5,376 KB |
testcase_09 | TLE | - |
ソースコード
#include <bits/stdc++.h> #define rep(i,n) for(int i=0;i<(n);i++) using namespace std; random_device seed_gen; mt19937 rng(seed_gen()); int main(){ int n,p[2]; scanf("%d 0.%d 0.%d",&n,&p[0],&p[1]); int a[2][20]; rep(i,2){ rep(j,n) scanf("%d",&a[i][j]); sort(a[i],a[i]+n); } int cnt=0; rep(_,2000000){ int score=0; bool used[2][20]={}; rep(t,n){ int idx[2]; rep(i,2){ if(t==n-1 || rng()%1000<p[i]){ for(idx[i]=0;used[i][idx[i]];idx[i]++); } else{ int k=rng()%(n-t-1)+1; for(idx[i]=n-1;;idx[i]--){ if(!used[i][idx[i]]) k--; if(k==0) break; } } used[i][idx[i]]=true; } if(a[0][idx[0]]>a[1][idx[1]]) score+=a[0][idx[0]]+a[1][idx[1]]; else score-=a[0][idx[0]]+a[1][idx[1]]; } if(score>0) cnt++; } printf("%.9f\n",cnt/2e6); return 0; }