結果

問題 No.210 探し物はどこですか?
ユーザー 37zigen37zigen
提出日時 2016-03-23 15:08:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 676 ms / 2,000 ms
コード長 1,052 bytes
コンパイル時間 2,358 ms
コンパイル使用メモリ 77,520 KB
実行使用メモリ 50,984 KB
最終ジャッジ日時 2024-10-01 21:29:34
合計ジャッジ時間 26,700 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 324 ms
44,212 KB
testcase_01 AC 507 ms
47,960 KB
testcase_02 AC 550 ms
49,448 KB
testcase_03 AC 435 ms
41,788 KB
testcase_04 AC 438 ms
42,728 KB
testcase_05 AC 438 ms
42,604 KB
testcase_06 AC 443 ms
42,736 KB
testcase_07 AC 448 ms
42,816 KB
testcase_08 AC 422 ms
42,720 KB
testcase_09 AC 386 ms
42,672 KB
testcase_10 AC 417 ms
42,608 KB
testcase_11 AC 417 ms
42,496 KB
testcase_12 AC 431 ms
42,372 KB
testcase_13 AC 451 ms
43,020 KB
testcase_14 AC 464 ms
44,312 KB
testcase_15 AC 503 ms
45,500 KB
testcase_16 AC 479 ms
43,720 KB
testcase_17 AC 491 ms
43,432 KB
testcase_18 AC 420 ms
43,576 KB
testcase_19 AC 429 ms
43,336 KB
testcase_20 AC 404 ms
43,484 KB
testcase_21 AC 413 ms
43,416 KB
testcase_22 AC 409 ms
43,444 KB
testcase_23 AC 546 ms
47,992 KB
testcase_24 AC 637 ms
48,296 KB
testcase_25 AC 580 ms
48,220 KB
testcase_26 AC 575 ms
47,944 KB
testcase_27 AC 530 ms
47,700 KB
testcase_28 AC 554 ms
47,656 KB
testcase_29 AC 579 ms
48,764 KB
testcase_30 AC 567 ms
48,156 KB
testcase_31 AC 561 ms
48,148 KB
testcase_32 AC 568 ms
48,084 KB
testcase_33 AC 674 ms
50,464 KB
testcase_34 AC 599 ms
49,432 KB
testcase_35 AC 613 ms
48,340 KB
testcase_36 AC 634 ms
49,980 KB
testcase_37 AC 666 ms
50,708 KB
testcase_38 AC 676 ms
50,056 KB
testcase_39 AC 658 ms
50,984 KB
testcase_40 AC 632 ms
48,652 KB
testcase_41 AC 661 ms
49,800 KB
testcase_42 AC 664 ms
50,432 KB
testcase_43 AC 142 ms
41,204 KB
testcase_44 AC 210 ms
42,312 KB
testcase_45 AC 409 ms
42,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder210;
import java.util.Comparator;
import java.util.PriorityQueue;
import java.util.Scanner;
public class Main {

	public static void main(String[] args){

		Scanner sc=new Scanner(System.in);

		int n=sc.nextInt();
		double[] p=new double[n+1];
		double[] q=new double[n+1];
		for(int i=0;i<n;i++){
			p[i+1]=sc.nextDouble()/1000;
			//p[i]=i番目の部屋で眼鏡を紛失した確率
		}
		for(int i=0;i<n;i++){
			q[i+1]=sc.nextDouble()/100;
			//q[i]=i番目の部屋に眼鏡が落ちていた場合一回の探索で見つけられる確率
		}

		PriorityQueue<double[]> queue = new PriorityQueue<double[]>(n, new Comparator<double[]>(){
			public int compare(double[] x, double[] y)
			{
				return -Double.compare(x[0], y[0]);
			}
		});

		for(int i=1;i<=n;i++){
			queue.add(new double[]{p[i]*q[i],(double)i});//部屋を探して見つかる確率
		}
		double E=0;
		for(int i=1;i<1800000;i++){
			double[] a=queue.poll();
			E+=a[0]*i;
			a[0]=a[0]*(1-q[(int)a[1]]);
			queue.add(a);
		}
		System.out.println(E);

	}
}
0