結果
問題 | No.173 カードゲーム(Medium) |
ユーザー | h_noson |
提出日時 | 2016-05-07 18:24:01 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 155 ms / 3,000 ms |
コード長 | 1,428 bytes |
コンパイル時間 | 834 ms |
コンパイル使用メモリ | 90,028 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-05 10:21:56 |
合計ジャッジ時間 | 2,255 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 10 ms
6,816 KB |
testcase_01 | AC | 21 ms
6,816 KB |
testcase_02 | AC | 141 ms
6,816 KB |
testcase_03 | AC | 136 ms
6,816 KB |
testcase_04 | AC | 131 ms
6,816 KB |
testcase_05 | AC | 115 ms
6,816 KB |
testcase_06 | AC | 109 ms
6,820 KB |
testcase_07 | AC | 107 ms
6,820 KB |
testcase_08 | AC | 96 ms
6,820 KB |
testcase_09 | AC | 155 ms
6,816 KB |
ソースコード
#include <iostream> #include <vector> #include <algorithm> #include <iomanip> #include <random> using namespace std; #define RREP(i,s,e) for (i = s; i >= e; i--) #define rrep(i,n) RREP(i,(int)(n)-1,0) #define REP(i,s,e) for (i = s; i <= e; i++) #define rep(i,n) REP(i,0,(int)(n)-1) #define INF 100000000 typedef long long ll; const int loops = 100000; int main() { int i, j, n; int a[20], b[20]; double pa, pb, ans; cin >> n >> pa >> pb; rep (i,n) cin >> a[i]; rep (i,n) cin >> b[i]; pa *= 1000; pb *= 1000; sort(a,a+n); sort(b,b+n); ans = 0; rep (i,loops) { int p = 0; vector<int> va(n), vb(n); rep (j,n) { va[j] = a[j]; vb[j] = b[j]; } rep (j,n) { int x = rand() % 1000; int y = rand() % 1000; int ia, ib; if (j == n-1 || x < pa) ia = 0; else ia = rand() % (n-j-1) + 1; if (j == n-1 || y < pb) ib = 0; else ib = rand() % (n-j-1) + 1; if (va[ia] > vb[ib]) p += va[ia] + vb[ib]; else if (va[ia] < vb[ib]) p -= va[ia] + vb[ib]; va.erase(next(va.begin(),ia)); vb.erase(next(vb.begin(),ib)); } if (p > 0) ans++; } cout << ans / loops << endl; return 0; }