結果

問題 No.133 カードゲーム
ユーザー ぴろずぴろず
提出日時 2015-01-23 08:59:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 5,000 ms
コード長 1,029 bytes
コンパイル時間 2,143 ms
コンパイル使用メモリ 76,612 KB
実行使用メモリ 41,632 KB
最終ジャッジ日時 2024-06-25 03:28:15
合計ジャッジ時間 5,919 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
41,040 KB
testcase_01 AC 126 ms
41,268 KB
testcase_02 AC 126 ms
41,248 KB
testcase_03 AC 125 ms
40,948 KB
testcase_04 AC 125 ms
41,020 KB
testcase_05 AC 127 ms
41,320 KB
testcase_06 AC 126 ms
41,148 KB
testcase_07 AC 126 ms
41,172 KB
testcase_08 AC 114 ms
39,804 KB
testcase_09 AC 129 ms
41,384 KB
testcase_10 AC 127 ms
41,100 KB
testcase_11 AC 128 ms
41,632 KB
testcase_12 AC 126 ms
41,384 KB
testcase_13 AC 125 ms
41,360 KB
testcase_14 AC 128 ms
41,420 KB
testcase_15 AC 128 ms
40,936 KB
testcase_16 AC 129 ms
41,268 KB
testcase_17 AC 113 ms
40,288 KB
testcase_18 AC 115 ms
40,272 KB
testcase_19 AC 128 ms
41,480 KB
testcase_20 AC 114 ms
40,248 KB
testcase_21 AC 128 ms
41,216 KB
testcase_22 AC 129 ms
41,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no133;

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int[] a = new int[n];
		int[] b = new int[n];
		for(int i=0;i<n;i++) {
			a[i] = sc.nextInt();
		}
		for(int i=0;i<n;i++) {
			b[i] = sc.nextInt();
		}
		int[] pa = new int[n];
		for(int i=0;i<n;i++) {
			pa[i] = i;
		}
		double ans = 0;
		do {
			int wins = 0;
			for(int i=0;i<n;i++) {
				if(a[pa[i]] > b[i]) {
					wins++;
				}
			}
			if (wins > n / 2) {
				ans++;
			}
		} while(nextPermutation(pa));
		for(int i=1;i<=n;i++) {
			ans /= i;
		}
		System.out.println(ans);

	}
	static boolean nextPermutation(int[] p) {
		for(int a=p.length-2;a>=0;--a) {
			if(p[a]<p[a+1]) {
				for(int b=p.length-1;;--b) {
					if(p[b]>p[a]) {
						int t = p[a];
						p[a] = p[b];
						p[b] = t;
						for(++a, b=p.length-1;a<b;++a,--b) {
							t = p[a];
							p[a] = p[b];
							p[b] = t;
						}
						return true;
					}
				}
			}
		}
		return false;
	}
}
0