結果

問題 No.133 カードゲーム
ユーザー __matsugen__pro
提出日時 2019-09-06 18:31:02
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 548 bytes
コンパイル時間 1,307 ms
コンパイル使用メモリ 70,592 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-24 08:18:15
合計ジャッジ時間 1,652 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 19
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
using namespace std;

int main()
{
	int n;
	cin >> n;
	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];

	sort(a, a+n);

	long long int A, ALL;
	A = ALL = 0;
	do {
		sort(b, b+n);
		do {
			int cnt = 0;
			for (int i = 0; i < n; i++){
				if (a[i] > b[i]) cnt++;
				else if (b[i] > a[i]) cnt--;
			}
			if (cnt > 0) A++;
			ALL++;
		} while (next_permutation(b, b+n));
	} while (next_permutation(a, a+n));
	printf("%.10lf\n", (double)A / (double)ALL);
}

0