結果

問題 No.210 探し物はどこですか?
ユーザー 37zigen37zigen
提出日時 2016-03-23 15:07:24
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,051 bytes
コンパイル時間 2,158 ms
コンパイル使用メモリ 77,484 KB
実行使用メモリ 61,276 KB
最終ジャッジ日時 2024-10-01 21:29:01
合計ジャッジ時間 22,311 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 274 ms
43,016 KB
testcase_01 AC 409 ms
47,472 KB
testcase_02 WA -
testcase_03 AC 315 ms
42,884 KB
testcase_04 AC 320 ms
42,868 KB
testcase_05 AC 302 ms
42,628 KB
testcase_06 AC 321 ms
43,796 KB
testcase_07 AC 331 ms
42,744 KB
testcase_08 AC 302 ms
42,764 KB
testcase_09 AC 267 ms
42,288 KB
testcase_10 AC 309 ms
42,364 KB
testcase_11 AC 326 ms
44,068 KB
testcase_12 AC 311 ms
42,684 KB
testcase_13 AC 327 ms
43,280 KB
testcase_14 AC 354 ms
44,384 KB
testcase_15 AC 365 ms
43,484 KB
testcase_16 AC 334 ms
43,196 KB
testcase_17 AC 403 ms
44,032 KB
testcase_18 AC 319 ms
43,296 KB
testcase_19 AC 323 ms
43,460 KB
testcase_20 AC 317 ms
43,516 KB
testcase_21 AC 324 ms
43,528 KB
testcase_22 AC 317 ms
43,204 KB
testcase_23 AC 433 ms
48,372 KB
testcase_24 AC 465 ms
48,260 KB
testcase_25 AC 525 ms
49,752 KB
testcase_26 AC 594 ms
47,604 KB
testcase_27 AC 522 ms
47,884 KB
testcase_28 AC 452 ms
47,600 KB
testcase_29 AC 442 ms
47,944 KB
testcase_30 AC 475 ms
47,680 KB
testcase_31 AC 450 ms
47,816 KB
testcase_32 AC 500 ms
49,160 KB
testcase_33 AC 532 ms
50,192 KB
testcase_34 AC 524 ms
50,232 KB
testcase_35 AC 560 ms
50,304 KB
testcase_36 AC 492 ms
48,548 KB
testcase_37 AC 485 ms
48,440 KB
testcase_38 AC 479 ms
48,424 KB
testcase_39 AC 545 ms
50,160 KB
testcase_40 AC 525 ms
49,748 KB
testcase_41 AC 547 ms
49,940 KB
testcase_42 AC 527 ms
50,036 KB
testcase_43 AC 146 ms
41,256 KB
testcase_44 AC 195 ms
42,100 KB
testcase_45 AC 296 ms
42,260 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<900000;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