結果

問題 No.173 カードゲーム(Medium)
ユーザー heno239heno239
提出日時 2018-11-07 06:27:56
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 224 ms / 3,000 ms
コード長 2,344 bytes
コンパイル時間 1,192 ms
コンパイル使用メモリ 118,764 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-08-13 03:57:29
合計ジャッジ時間 3,414 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
4,380 KB
testcase_01 AC 42 ms
4,380 KB
testcase_02 AC 200 ms
4,380 KB
testcase_03 AC 201 ms
4,376 KB
testcase_04 AC 197 ms
4,376 KB
testcase_05 AC 178 ms
4,376 KB
testcase_06 AC 161 ms
4,380 KB
testcase_07 AC 153 ms
4,380 KB
testcase_08 AC 149 ms
4,380 KB
testcase_09 AC 224 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<string>
#include<cstdio>
#include<vector>
#include<cmath>
#include<algorithm>
#include<functional>
#include<iomanip>
#include<queue>
#include<ciso646>
#include<random>
#include<map>
#include<set>
#include<complex>
#include<bitset>
#include<stack>
#include<unordered_map>
using namespace std;
typedef long long ll;
typedef unsigned int ui;
const ll mod = (ll)(1e+9) + 7;
const ll INF = (ll)1000000007 * 1000000007;
typedef pair<int, int> P;
#define stop char nyaa;cin>>nyaa;
#define rep(i,n) for(int i=0;i<n;i++)
#define per(i,n) for(int i=n-1;i>=0;i--)
#define Rep(i,sta,n) for(int i=sta;i<n;i++)
#define rep1(i,n) for(int i=1;i<=n;i++)
#define per1(i,n) for(int i=n;i>=1;i--)
#define Rep1(i,sta,n) for(int i=sta;i<=n;i++)
typedef long double ld;
typedef complex<ld> Point;
const ld eps = 1e-8;
const ld pi = acos(-1.0);
typedef pair<ll, ll> LP;
typedef pair<ld, ld> LDP;
const int key = 100000;
int a[20], b[20];
int main() {
	cout << fixed << setprecision(8);
	random_device rd;
	mt19937 mt(rd());
	int n; cin >> n; ld pA, pB;
	cin >> pA >> pB; pA *= 1000; pB *= 1000;
	int pa = (int)pA, pb = (int)pB;
	rep(i, n) {
		cin >> a[i];
	}
	rep(i, n) {
		cin >> b[i];
	}
	int cnt = 0;
	rep(aa, key) {
		vector<int> v,va,vb;
		rep(i, n) {
			v.push_back(a[i]);
		}
		sort(v.begin(), v.end());
		rep(i, n-1) {
			int sum = pa * (n-i-1) + (1000 - pa)*(n-i-1);
			uniform_int_distribution<> rnd(0, sum-1);
			int x = rnd(mt);
			if (x <= pa * (n - i-1)) {
				va.push_back(v[0]);
				v.erase(v.begin());
			}
			else {
				int id = (x - pa * (n - i-1)) / (1000-pa)+1;
				va.push_back(v[id]);
				v.erase(v.begin() + id);
			}
		}
		va.push_back(v[0]); v.clear();
		rep(i, n) {
			v.push_back(b[i]);
		}
		sort(v.begin(), v.end());
		rep(i, n-1) {
			int sum = pb * (n - i-1) + (1000 - pb)*(n-i-1);
			uniform_int_distribution<> rnd(0, sum-1);
			int x = rnd(mt);
			if (x <= pb * (n - i-1)) {
				vb.push_back(v[0]);
				v.erase(v.begin());
			}
			else {
				int id = (x - pb * (n - i-1)) / (1000-pb) + 1;
				vb.push_back(v[id]);
				v.erase(v.begin() + id);
			}
		}
		vb.push_back(v[0]); v.clear();
		int ca = 0, cb = 0;
		rep(i, n) {
			if (va[i] > vb[i]) {
				ca += va[i] + vb[i];
			}
			else if (va[i] < vb[i]) {
				cb += va[i] + vb[i];
			}
		}
		if (ca > cb)cnt++;
	}
	cout << cnt / (ld)key << endl;
	return 0;
}
0