結果

問題 No.133 カードゲーム
ユーザー Takahiro IshikawaTakahiro Ishikawa
提出日時 2018-10-08 20:00:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 5,000 ms
コード長 2,082 bytes
コンパイル時間 4,298 ms
コンパイル使用メモリ 77,660 KB
実行使用メモリ 54,344 KB
最終ジャッジ日時 2024-10-12 15:39:51
合計ジャッジ時間 8,236 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
54,068 KB
testcase_01 AC 117 ms
52,952 KB
testcase_02 AC 131 ms
54,052 KB
testcase_03 AC 129 ms
54,164 KB
testcase_04 AC 127 ms
54,060 KB
testcase_05 AC 129 ms
53,900 KB
testcase_06 AC 127 ms
54,044 KB
testcase_07 AC 129 ms
53,996 KB
testcase_08 AC 129 ms
54,344 KB
testcase_09 AC 128 ms
54,016 KB
testcase_10 AC 128 ms
53,960 KB
testcase_11 AC 130 ms
53,856 KB
testcase_12 AC 128 ms
54,276 KB
testcase_13 AC 128 ms
54,144 KB
testcase_14 AC 131 ms
53,912 KB
testcase_15 AC 129 ms
54,084 KB
testcase_16 AC 132 ms
54,172 KB
testcase_17 AC 130 ms
54,240 KB
testcase_18 AC 133 ms
54,212 KB
testcase_19 AC 136 ms
54,144 KB
testcase_20 AC 132 ms
53,940 KB
testcase_21 AC 134 ms
53,944 KB
testcase_22 AC 134 ms
54,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Q133 {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt();
        Integer[] a = new Integer[N];
        Integer[] b = new Integer[N];
        for (int i = 0; i < N; i++) {
            a[i] = sc.nextInt();
        }
        for (int i = 0; i < N; i++) {
            b[i] = sc.nextInt();
        }

        Integer[] na = new Integer[N];
        Integer[] nb = new Integer[N];
        for (int i = 0; i < N; i++) {
            na[i] = i;
            nb[i] = i;
        }

        int cnt = 0;
        int win = 0;

        do {
            do {
                int awin = 0;
                int bwin = 0;
                for (int i = 0; i < N; i++) {
                    if (a[na[i]] > b[nb[i]]) awin++;
                    if (b[nb[i]] > a[na[i]]) bwin++;
                }
                if (awin > bwin) win++;
                cnt++;
            } while ((nb = (Integer[]) nextPermutation(nb)) != null);

            nb = new Integer[N];
            for (int i = 0; i < N; i++) {
                nb[i] = i;
            }
        } while ((na = (Integer[]) nextPermutation(na)) != null);

        System.out.println(1.0 * win / cnt);
    }

    private static Comparable[] nextPermutation(final Comparable[] c) {
        int first = _getFirst(c);
        if (first == -1) return null;

        int toSwap = c.length - 1;
        while (c[first].compareTo(c[toSwap]) >= 0) {
            toSwap--;
        }

        swap(c, first++, toSwap);

        toSwap = c.length - 1;
        while (first < toSwap) {
            swap(c, first++, toSwap--);
        }

        return c;
    }

    private static void swap(final Comparable[] c, final int i, final int j) {
        final Comparable tmp = c[i];
        c[i] = c[j];
        c[j] = tmp;
    }

    private static int _getFirst(final Comparable[] c) {
        for (int i = c.length - 2; i >= 0; i--) {
            if (c[i].compareTo(c[i + 1]) < 0) {
                return i;
            }
        }

        return -1;
    }
}
0