結果

問題 No.133 カードゲーム
ユーザー tentententen
提出日時 2021-02-04 08:37:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 5,000 ms
コード長 1,631 bytes
コンパイル時間 2,159 ms
コンパイル使用メモリ 78,048 KB
実行使用メモリ 54,572 KB
最終ジャッジ日時 2024-06-30 14:06:59
合計ジャッジ時間 6,264 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
53,996 KB
testcase_01 AC 133 ms
54,572 KB
testcase_02 AC 132 ms
54,048 KB
testcase_03 AC 132 ms
54,164 KB
testcase_04 AC 133 ms
54,112 KB
testcase_05 AC 134 ms
54,120 KB
testcase_06 AC 134 ms
54,128 KB
testcase_07 AC 118 ms
53,040 KB
testcase_08 AC 133 ms
53,984 KB
testcase_09 AC 132 ms
53,924 KB
testcase_10 AC 133 ms
54,104 KB
testcase_11 AC 133 ms
54,260 KB
testcase_12 AC 130 ms
54,208 KB
testcase_13 AC 133 ms
54,108 KB
testcase_14 AC 129 ms
54,000 KB
testcase_15 AC 129 ms
54,248 KB
testcase_16 AC 122 ms
53,192 KB
testcase_17 AC 134 ms
54,144 KB
testcase_18 AC 133 ms
54,112 KB
testcase_19 AC 133 ms
53,852 KB
testcase_20 AC 134 ms
54,000 KB
testcase_21 AC 133 ms
53,920 KB
testcase_22 AC 131 ms
54,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int[] as = new int[n];
        for (int i = 0; i < n; i++) {
            as[i] = sc.nextInt();
        }
        int[] bs = new int[n];
        for (int i = 0; i < n; i++) {
            bs[i] = sc.nextInt();
        }
        ArrayList<int[]> permuration = getPermuration(n);
        int size = permuration.size();
        int win = 0;
        for (int[] aArr : permuration) {
            for (int[] bArr : permuration) {
                int count = 0;
                for (int i = 0; i < n; i++) {
                    if (as[aArr[i]] > bs[bArr[i]]) {
                        count++;
                    }
                }
                if (count * 2 > n) {
                    win++;
                }
            }
        }
        System.out.println((double)win / size / size);
    }
    
    static ArrayList<int[]> getPermuration(int n) {
        ArrayList<int[]> ans = new ArrayList<>();
        makePermuration(0, new int[n], new boolean[n], ans, n);
        return ans;
    }
    
    static void makePermuration(int idx, int[] arr, boolean[] used, ArrayList<int[]> ans, int size) {
        if (idx == size) {
            ans.add((int[])arr.clone());
            return;
        }
        for (int i = 0; i < size; i++) {
            if (used[i]) {
                continue;
            }
            used[i] = true;
            arr[idx] = i;
            makePermuration(idx + 1, arr, used, ans, size);
            used[i] = false;
        }
    }
}
0