結果

問題 No.133 カードゲーム
ユーザー YamaKasaYamaKasa
提出日時 2018-07-15 21:53:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 163 ms / 5,000 ms
コード長 1,525 bytes
コンパイル時間 2,762 ms
コンパイル使用メモリ 78,032 KB
実行使用メモリ 41,704 KB
最終ジャッジ日時 2024-11-07 07:37:18
合計ジャッジ時間 7,462 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
41,020 KB
testcase_01 AC 151 ms
41,544 KB
testcase_02 AC 145 ms
41,168 KB
testcase_03 AC 163 ms
41,392 KB
testcase_04 AC 151 ms
41,480 KB
testcase_05 AC 153 ms
41,216 KB
testcase_06 AC 163 ms
41,192 KB
testcase_07 AC 153 ms
41,596 KB
testcase_08 AC 149 ms
41,316 KB
testcase_09 AC 152 ms
41,704 KB
testcase_10 AC 150 ms
41,284 KB
testcase_11 AC 139 ms
40,956 KB
testcase_12 AC 158 ms
41,200 KB
testcase_13 AC 148 ms
41,260 KB
testcase_14 AC 150 ms
41,448 KB
testcase_15 AC 154 ms
41,628 KB
testcase_16 AC 143 ms
41,192 KB
testcase_17 AC 158 ms
40,972 KB
testcase_18 AC 151 ms
41,548 KB
testcase_19 AC 152 ms
41,492 KB
testcase_20 AC 152 ms
41,276 KB
testcase_21 AC 142 ms
40,980 KB
testcase_22 AC 154 ms
41,580 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class Main {
	static int[][] list;
	static int index = 0;
	static int N;
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		N = scan.nextInt();
		int []A = new int[N];
		int []B = new int[N];

		for(int i = 0; i < N; i++) {
			A[i] = scan.nextInt();
		}
		for(int i = 0; i < N; i++) {
			B[i] = scan.nextInt();
		}
		scan.close();
		int l = fact(N);
		list = new int[l][N];
		int []a = new int[N];
		perm(0, a, new boolean[N + 1]);

		Arrays.fill(a, 0);
		int n = 100000;
		int win = 0;
		for(int i = 0; i < n; i++) {
			int t1 = (int)(Math.random() * l);
			int t2 = (int)(Math.random() * l);
			int cnt1 = 0;
			int cnt2 = 0;
			for(int j = 0; j < N; j++) {
				int c1 = A[list[t1][j] - 1];
				int c2 = B[list[t2][j] - 1];
				if(c1 > c2) {
					cnt1 ++;
				}else if(c1 < c2) {
					cnt2 ++;
				}
			}
			if(cnt1 > cnt2) {
				win ++;
			}
		}

		double ans = (double) win / n;
		System.out.println(ans);

	}
	static void perm(int n, int[] a, boolean[] flag) {
        if(n == a.length) {
        	for(int i = 0; i < N; i++) {
        		list[index][i] = a[i];
        	}
        	index ++;
            return;
        }
        for(int i = 1; i <= a.length; i++) {
            if(flag[i]) continue;
            a[n] = i;
            flag[i] = true;
            perm(n + 1, a, flag);
            flag[i] = false;
        }
    }
	static int fact(int n) {
		if(n == 1) {
			return 1;
		}else {
			return n * fact(n - 1);
		}
	}
}
0