結果
問題 | No.173 カードゲーム(Medium) |
ユーザー | mamekin |
提出日時 | 2015-04-05 17:07:31 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 2,228 ms / 3,000 ms |
コード長 | 1,761 bytes |
コンパイル時間 | 840 ms |
コンパイル使用メモリ | 96,256 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-04 02:06:38 |
合計ジャッジ時間 | 15,411 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 59 ms
5,248 KB |
testcase_01 | AC | 144 ms
5,376 KB |
testcase_02 | AC | 1,954 ms
5,376 KB |
testcase_03 | AC | 1,980 ms
5,376 KB |
testcase_04 | AC | 1,919 ms
5,376 KB |
testcase_05 | AC | 1,663 ms
5,376 KB |
testcase_06 | AC | 1,455 ms
5,376 KB |
testcase_07 | AC | 1,324 ms
5,376 KB |
testcase_08 | AC | 1,305 ms
5,376 KB |
testcase_09 | AC | 2,228 ms
5,376 KB |
ソースコード
#include <cstdio> #include <iostream> #include <sstream> #include <fstream> #include <iomanip> #include <algorithm> #include <cmath> #include <string> #include <vector> #include <list> #include <queue> #include <stack> #include <set> #include <map> #include <bitset> #include <numeric> #include <limits> #include <climits> #include <cfloat> #include <functional> using namespace std; unsigned xor128(){ static unsigned x=123456789,y=362436069,z=521288629,w=88675123; unsigned t; t=(x^(x<<11));x=y;y=z;z=w; return( w=(w^(w>>19))^(t^(t>>8)) ); } int main() { int n; double pa, pb; cin >> n >> pa >> pb; vector<int> a(n), b(n); for(int i=0; i<n; ++i) cin >> a[i]; for(int i=0; i<n; ++i) cin >> b[i]; const int LOOP_TIME = 1000000; int win = 0; for(int t=0; t<LOOP_TIME; ++t){ vector<int> x = a; vector<int> y = b; int score = 0; for(int i=0; i<n; ++i){ sort(x.begin(), x.end() - i); sort(y.begin(), y.end() - i); if(i < n - 1){ if(xor128() / (double)UINT_MAX > pa){ int j = xor128() % (n - 1 - i) + 1; swap(x[0], x[j]); } if(xor128() / (double)UINT_MAX > pb){ int j = xor128() % (n - 1 - i) + 1; swap(y[0], y[j]); } } if(x[0] > y[0]) score += x[0] + y[0]; else if(x[0] < y[0]) score -= x[0] + y[0]; swap(x[0], x[n-1-i]); swap(y[0], y[n-1-i]); } if(score > 0) ++ win; } double ans = win / (double)LOOP_TIME; printf("%.10f\n", ans); return 0; }