結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 260 ms
44,984 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 248 ms
41,788 KB
testcase_04 AC 233 ms
43,028 KB
testcase_05 AC 225 ms
42,060 KB
testcase_06 AC 279 ms
43,012 KB
testcase_07 AC 236 ms
42,672 KB
testcase_08 AC 195 ms
42,232 KB
testcase_09 AC 205 ms
42,568 KB
testcase_10 AC 200 ms
42,060 KB
testcase_11 AC 213 ms
43,740 KB
testcase_12 AC 198 ms
42,236 KB
testcase_13 AC 262 ms
43,192 KB
testcase_14 AC 284 ms
43,144 KB
testcase_15 AC 285 ms
43,372 KB
testcase_16 AC 268 ms
43,248 KB
testcase_17 AC 282 ms
43,664 KB
testcase_18 AC 281 ms
43,508 KB
testcase_19 AC 265 ms
44,204 KB
testcase_20 AC 277 ms
43,476 KB
testcase_21 AC 266 ms
43,444 KB
testcase_22 AC 257 ms
43,460 KB
testcase_23 AC 373 ms
48,492 KB
testcase_24 AC 361 ms
47,756 KB
testcase_25 AC 391 ms
49,544 KB
testcase_26 AC 367 ms
47,944 KB
testcase_27 AC 402 ms
49,312 KB
testcase_28 AC 374 ms
48,260 KB
testcase_29 AC 375 ms
47,600 KB
testcase_30 AC 380 ms
48,164 KB
testcase_31 AC 370 ms
47,536 KB
testcase_32 AC 426 ms
49,368 KB
testcase_33 AC 398 ms
48,668 KB
testcase_34 AC 410 ms
49,516 KB
testcase_35 AC 399 ms
48,504 KB
testcase_36 AC 417 ms
48,640 KB
testcase_37 AC 408 ms
48,276 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 140 ms
41,576 KB
testcase_44 AC 187 ms
42,484 KB
testcase_45 AC 226 ms
41,992 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<300000;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