結果

問題 No.133 カードゲーム
ユーザー Takahiro Ishikawa
提出日時 2018-10-08 19:38:12
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 2,066 bytes
コンパイル時間 3,173 ms
コンパイル使用メモリ 79,164 KB
実行使用メモリ 41,708 KB
最終ジャッジ日時 2024-10-12 15:28:27
合計ジャッジ時間 7,390 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3 WA * 1
other AC * 15 WA * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    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[] bcache = new Integer[N];
        for (int i = 0; i < N; i++) {
            bcache[i] = b[i];
        }

        int cnt = 0;
        int win = 0;

        Arrays.sort(a);
        Arrays.sort(b);

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

            b = new Integer[N];
            for (int i = 0; i < N; i++) {
                b[i] = bcache[i];
            }
        } while ((a = (Integer[]) nextPermutation(a)) != 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