結果
問題 | No.210 探し物はどこですか? |
ユーザー | uwi |
提出日時 | 2015-05-15 23:34:27 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 590 ms / 2,000 ms |
コード長 | 3,770 bytes |
コンパイル時間 | 3,226 ms |
コンパイル使用メモリ | 88,960 KB |
実行使用メモリ | 42,900 KB |
最終ジャッジ日時 | 2024-07-06 04:21:48 |
合計ジャッジ時間 | 27,518 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 301 ms
41,728 KB |
testcase_01 | AC | 424 ms
41,684 KB |
testcase_02 | AC | 468 ms
42,828 KB |
testcase_03 | AC | 507 ms
41,956 KB |
testcase_04 | AC | 483 ms
41,744 KB |
testcase_05 | AC | 511 ms
41,488 KB |
testcase_06 | AC | 516 ms
41,816 KB |
testcase_07 | AC | 501 ms
41,580 KB |
testcase_08 | AC | 489 ms
41,712 KB |
testcase_09 | AC | 457 ms
41,884 KB |
testcase_10 | AC | 481 ms
42,208 KB |
testcase_11 | AC | 513 ms
42,468 KB |
testcase_12 | AC | 504 ms
41,768 KB |
testcase_13 | AC | 506 ms
41,864 KB |
testcase_14 | AC | 466 ms
41,772 KB |
testcase_15 | AC | 529 ms
42,004 KB |
testcase_16 | AC | 499 ms
41,928 KB |
testcase_17 | AC | 552 ms
41,736 KB |
testcase_18 | AC | 434 ms
41,856 KB |
testcase_19 | AC | 420 ms
42,104 KB |
testcase_20 | AC | 411 ms
41,924 KB |
testcase_21 | AC | 419 ms
42,128 KB |
testcase_22 | AC | 410 ms
42,032 KB |
testcase_23 | AC | 565 ms
42,104 KB |
testcase_24 | AC | 590 ms
42,360 KB |
testcase_25 | AC | 550 ms
42,016 KB |
testcase_26 | AC | 533 ms
42,284 KB |
testcase_27 | AC | 482 ms
42,176 KB |
testcase_28 | AC | 517 ms
41,884 KB |
testcase_29 | AC | 510 ms
41,888 KB |
testcase_30 | AC | 510 ms
42,104 KB |
testcase_31 | AC | 510 ms
42,100 KB |
testcase_32 | AC | 520 ms
42,088 KB |
testcase_33 | AC | 584 ms
42,708 KB |
testcase_34 | AC | 530 ms
42,368 KB |
testcase_35 | AC | 540 ms
42,712 KB |
testcase_36 | AC | 515 ms
42,748 KB |
testcase_37 | AC | 525 ms
42,604 KB |
testcase_38 | AC | 546 ms
42,900 KB |
testcase_39 | AC | 541 ms
42,736 KB |
testcase_40 | AC | 543 ms
42,700 KB |
testcase_41 | AC | 547 ms
42,660 KB |
testcase_42 | AC | 566 ms
42,552 KB |
testcase_43 | AC | 140 ms
40,928 KB |
testcase_44 | AC | 207 ms
41,588 KB |
testcase_45 | AC | 489 ms
42,092 KB |
ソースコード
package contest; import java.io.ByteArrayInputStream; import java.io.IOException; import java.io.InputStream; import java.io.PrintWriter; import java.util.Arrays; import java.util.Comparator; import java.util.InputMismatchException; import java.util.PriorityQueue; public class Q483 { InputStream is; PrintWriter out; String INPUT = ""; void solve() { int n = ni(); PriorityQueue<double[]> pq = new PriorityQueue<double[]>(2000, new Comparator<double[]>(){ public int compare(double[] x, double[] y) { return -Double.compare(x[0], y[0]); } }); double[] ps = new double[n]; for(int i = 0;i < n;i++){ ps[i] = nd()/1000; } double[] qs = new double[n]; for(int i = 0;i < n;i++){ qs[i] = nd()/100; } for(int i = 0;i < n;i++){ pq.add(new double[]{ps[i]*qs[i], qs[i]}); } double e = 0; for(int rep = 0;rep < 2500000;rep++){ double[] cur = pq.poll(); e += cur[0]*(rep+1); cur[0] *= 1.-cur[1]; pq.add(cur); } out.printf("%.12f\n", e); } void run() throws Exception { // int n = 1000, m = 99999; // Random gen = new Random(); // StringBuilder sb = new StringBuilder(); // sb.append(n + " "); // for (int i = 0; i < n; i++) { // sb.append(1 + " "); // } // for (int i = 0; i < n; i++) { // sb.append(1 + " "); // } // INPUT = sb.toString(); is = INPUT.isEmpty() ? System.in : new ByteArrayInputStream(INPUT.getBytes()); out = new PrintWriter(System.out); long s = System.currentTimeMillis(); solve(); out.flush(); if(!INPUT.isEmpty())tr(System.currentTimeMillis()-s+"ms"); } public static void main(String[] args) throws Exception { new Q483().run(); } private byte[] inbuf = new byte[1024]; private int lenbuf = 0, ptrbuf = 0; private int readByte() { if(lenbuf == -1)throw new InputMismatchException(); if(ptrbuf >= lenbuf){ ptrbuf = 0; try { lenbuf = is.read(inbuf); } catch (IOException e) { throw new InputMismatchException(); } if(lenbuf <= 0)return -1; } return inbuf[ptrbuf++]; } private boolean isSpaceChar(int c) { return !(c >= 33 && c <= 126); } private int skip() { int b; while((b = readByte()) != -1 && isSpaceChar(b)); return b; } private double nd() { return Double.parseDouble(ns()); } private char nc() { return (char)skip(); } private String ns() { int b = skip(); StringBuilder sb = new StringBuilder(); while(!(isSpaceChar(b))){ // when nextLine, (isSpaceChar(b) && b != ' ') sb.appendCodePoint(b); b = readByte(); } return sb.toString(); } private char[] ns(int n) { char[] buf = new char[n]; int b = skip(), p = 0; while(p < n && !(isSpaceChar(b))){ buf[p++] = (char)b; b = readByte(); } return n == p ? buf : Arrays.copyOf(buf, p); } private char[][] nm(int n, int m) { char[][] map = new char[n][]; for(int i = 0;i < n;i++)map[i] = ns(m); return map; } private int[] na(int n) { int[] a = new int[n]; for(int i = 0;i < n;i++)a[i] = ni(); return a; } private int ni() { int num = 0, b; boolean minus = false; while((b = readByte()) != -1 && !((b >= '0' && b <= '9') || b == '-')); if(b == '-'){ minus = true; b = readByte(); } while(true){ if(b >= '0' && b <= '9'){ num = num * 10 + (b - '0'); }else{ return minus ? -num : num; } b = readByte(); } } private long nl() { long num = 0; int b; boolean minus = false; while((b = readByte()) != -1 && !((b >= '0' && b <= '9') || b == '-')); if(b == '-'){ minus = true; b = readByte(); } while(true){ if(b >= '0' && b <= '9'){ num = num * 10 + (b - '0'); }else{ return minus ? -num : num; } b = readByte(); } } private static void tr(Object... o) { System.out.println(Arrays.deepToString(o)); } }