結果

問題 No.133 カードゲーム
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-12-09 11:08:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 159 ms / 5,000 ms
コード長 1,740 bytes
コンパイル時間 2,341 ms
コンパイル使用メモリ 79,428 KB
実行使用メモリ 42,708 KB
最終ジャッジ日時 2024-06-25 03:45:04
合計ジャッジ時間 6,758 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 159 ms
42,412 KB
testcase_01 AC 156 ms
42,356 KB
testcase_02 AC 146 ms
42,120 KB
testcase_03 AC 157 ms
42,272 KB
testcase_04 AC 155 ms
42,232 KB
testcase_05 AC 157 ms
42,408 KB
testcase_06 AC 159 ms
42,636 KB
testcase_07 AC 157 ms
42,560 KB
testcase_08 AC 155 ms
42,300 KB
testcase_09 AC 147 ms
42,108 KB
testcase_10 AC 156 ms
42,480 KB
testcase_11 AC 158 ms
42,524 KB
testcase_12 AC 159 ms
42,104 KB
testcase_13 AC 152 ms
42,000 KB
testcase_14 AC 138 ms
42,288 KB
testcase_15 AC 159 ms
42,708 KB
testcase_16 AC 159 ms
42,544 KB
testcase_17 AC 157 ms
42,320 KB
testcase_18 AC 155 ms
42,340 KB
testcase_19 AC 144 ms
41,888 KB
testcase_20 AC 155 ms
42,568 KB
testcase_21 AC 144 ms
42,064 KB
testcase_22 AC 144 ms
41,748 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 [] 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 L=1;
        for(int i=1; i<=N; i++){
            L*=i;
        }
        int win=0;
        String [] perm = new String [L];
        makePerm(0, new int [N], new boolean [N+1], perm);
        for(int i=0; i<L; i++){
            char [] x = perm[i].toCharArray();
            int [] y = new int [N];
            for(int j=0; j<N; j++){
                y[j]=x[j]-'1';
            }
            win+=judge(N,A,B,y);
        }
        double ans = (double)win/L;
        System.out.println(ans);
    }
    static int judge(int N, int[] A, int[] B, int[] y){
        int count=0;
        for(int i=0; i<N; i++){
            if(A[y[i]]>B[i])count++;
        }
        if(2*count>N){
            return 1;
        }else{
            return 0;
        }
    }

    static int k=0;
    static String [] makePerm(int n, int[] perm, boolean[] flag, String[] p) {
        if(n==perm.length){
            p[k]=setPerm(perm);
            k++;
        }else{
            for(int i=1; i<=perm.length; i++){
                if(flag[i])continue;
                perm[n]=i;
                flag[i]=true;
                makePerm(n+1,perm,flag,p);
                flag[i]=false;
            }
        }
        return p;
    }
    static String setPerm(int[] perm) {
        String tmp="";
        for (int i: perm) {
            tmp=i+tmp;
        }
        return tmp;
    }
}
0