結果

問題 No.133 カードゲーム
ユーザー uafr_csuafr_cs
提出日時 2015-08-10 20:22:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 382 ms / 5,000 ms
コード長 1,242 bytes
コンパイル時間 2,797 ms
コンパイル使用メモリ 78,704 KB
実行使用メモリ 44,312 KB
最終ジャッジ日時 2024-06-25 03:39:29
合計ジャッジ時間 11,945 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 285 ms
43,484 KB
testcase_01 AC 296 ms
43,644 KB
testcase_02 AC 279 ms
43,904 KB
testcase_03 AC 187 ms
41,676 KB
testcase_04 AC 312 ms
43,816 KB
testcase_05 AC 365 ms
43,820 KB
testcase_06 AC 375 ms
43,812 KB
testcase_07 AC 382 ms
44,312 KB
testcase_08 AC 313 ms
43,908 KB
testcase_09 AC 316 ms
43,732 KB
testcase_10 AC 366 ms
44,036 KB
testcase_11 AC 352 ms
43,932 KB
testcase_12 AC 365 ms
43,912 KB
testcase_13 AC 278 ms
43,600 KB
testcase_14 AC 316 ms
43,820 KB
testcase_15 AC 316 ms
43,748 KB
testcase_16 AC 346 ms
43,960 KB
testcase_17 AC 359 ms
43,884 KB
testcase_18 AC 373 ms
44,112 KB
testcase_19 AC 348 ms
43,808 KB
testcase_20 AC 364 ms
43,916 KB
testcase_21 AC 367 ms
43,908 KB
testcase_22 AC 375 ms
44,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.HashSet;
import java.util.LinkedList;
import java.util.Scanner;
import java.util.Set;

public class Main {
	
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		
		final int N = sc.nextInt();
		final int[] AS = new int[N];
		final int[] BS = new int[N];
		
		for(int i = 0; i < N; i++){
			AS[i] = sc.nextInt();
		}
		for(int i = 0; i < N; i++){
			BS[i] = sc.nextInt();
		}
		
		ArrayList<Integer> A_random = new ArrayList<Integer>();
		ArrayList<Integer> B_random = new ArrayList<Integer>();
		for(int i = 0; i < N; i++){
			A_random.add(i);
			B_random.add(i);
		}
		
		double answer = Double.NaN;
		for(int i = 0; i < 1000000; i++){
			Collections.shuffle(A_random);
			Collections.shuffle(B_random);
			
			int count = 0;
			for(int j = 0; j < N; j++){
				count += (AS[A_random.get(j)] > BS[B_random.get(j)]) ? 1 : 0;
			}
			
			double prob = (count > N / 2) ? 1 : 0;
			
			if(Double.isNaN(answer)){
				answer = prob;
			}else{
				answer += (prob / i);
				answer *= i;
				answer /= (i + 1);
			}
			//System.out.printf("%d : %.08f\n", i, answer);
		}
		
		System.out.printf("%.08f\n", answer);
	}
	
}
0