結果
問題 | No.173 カードゲーム(Medium) |
ユーザー | srup٩(๑`н´๑)۶ |
提出日時 | 2016-08-31 14:53:48 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,146 bytes |
コンパイル時間 | 737 ms |
コンパイル使用メモリ | 67,920 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-11-14 12:56:12 |
合計ジャッジ時間 | 3,260 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 12 ms
6,816 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
ソースコード
#include <iostream> #include <algorithm> #include <vector> #include <cstdio> #include <cstdlib> typedef long long ll; using namespace std; #define rep(i,n) for(int i=0;i<(n);i++) int n; double pa, pb; vector<int> solve(double p){//取り出す順番の添字を返す vector<int> v, ret; rep(i, n) v.push_back(i);//スロット int x; rep(i, n - 1){ //rand()%(B-A+1)+A; B=999 A=500 double nowp = (rand() % (500) + 500) / 1000.0; if(nowp <= p) x = 0; else x = 1 + (n - i - 1) * (nowp - p) / (1 - p); if(x < 0) x = 0; if(n - 1 - i < x) x = n - 1 - i; ret.push_back(v[x]); v.erase(v.begin() + x); } ret.push_back(v[0]);//使うカードが一枚しかない場合 return ret; } int main(void){ cin >> n >> pa >> pb; vector<int> a(n), b(n); rep(i, n) cin >> a[i]; rep(i, n) cin >> b[i]; sort(a.begin(), a.end()); sort(a.begin(), a.end()); int win = 0; rep(i, 100000){ vector<int> va, vb; va = solve(pa); vb = solve(pb); int sa = 0, sb = 0; rep(j, n){ if(va[j] > vb[j]) sa += va[j] + vb[j]; else sb += va[j] + vb[j]; } if(sa > sb) win++; } printf("%.9f\n", (double)win / 100000); return 0; }