結果

問題 No.210 探し物はどこですか?
ユーザー nebukuro09nebukuro09
提出日時 2017-06-02 13:50:02
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 1,094 ms / 2,000 ms
コード長 735 bytes
コンパイル時間 2,832 ms
コンパイル使用メモリ 175,688 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-12 19:41:08
合計ジャッジ時間 18,377 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 183 ms
6,812 KB
testcase_01 AC 245 ms
6,940 KB
testcase_02 AC 274 ms
6,940 KB
testcase_03 AC 989 ms
6,944 KB
testcase_04 AC 150 ms
6,940 KB
testcase_05 AC 164 ms
6,944 KB
testcase_06 AC 980 ms
6,944 KB
testcase_07 AC 156 ms
6,940 KB
testcase_08 AC 136 ms
6,940 KB
testcase_09 AC 137 ms
6,940 KB
testcase_10 AC 134 ms
6,944 KB
testcase_11 AC 134 ms
6,940 KB
testcase_12 AC 139 ms
6,940 KB
testcase_13 AC 268 ms
6,944 KB
testcase_14 AC 256 ms
6,940 KB
testcase_15 AC 252 ms
6,944 KB
testcase_16 AC 266 ms
6,940 KB
testcase_17 AC 253 ms
6,940 KB
testcase_18 AC 227 ms
6,940 KB
testcase_19 AC 227 ms
6,940 KB
testcase_20 AC 224 ms
6,940 KB
testcase_21 AC 225 ms
6,944 KB
testcase_22 AC 228 ms
6,940 KB
testcase_23 AC 329 ms
6,944 KB
testcase_24 AC 328 ms
6,944 KB
testcase_25 AC 325 ms
6,940 KB
testcase_26 AC 327 ms
6,944 KB
testcase_27 AC 339 ms
6,944 KB
testcase_28 AC 301 ms
6,944 KB
testcase_29 AC 296 ms
6,940 KB
testcase_30 AC 294 ms
6,940 KB
testcase_31 AC 299 ms
6,944 KB
testcase_32 AC 290 ms
6,940 KB
testcase_33 AC 369 ms
6,940 KB
testcase_34 AC 366 ms
6,944 KB
testcase_35 AC 361 ms
6,940 KB
testcase_36 AC 379 ms
6,944 KB
testcase_37 AC 366 ms
6,944 KB
testcase_38 AC 324 ms
6,940 KB
testcase_39 AC 317 ms
6,944 KB
testcase_40 AC 321 ms
6,940 KB
testcase_41 AC 328 ms
6,940 KB
testcase_42 AC 337 ms
6,940 KB
testcase_43 AC 55 ms
6,944 KB
testcase_44 AC 103 ms
6,940 KB
testcase_45 AC 1,094 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.stdio, std.array, std.string, std.conv, std.algorithm;
import std.typecons, std.range, std.random, std.math, std.container;
import std.numeric, std.bigint, core.bitop, core.stdc.stdio;


void main() {
    auto N = readln.chomp.to!int;
    auto P = readln.split.map!(x => x.to!real / 1000).array;
    auto Q = readln.split.map!(x => x.to!real / 100).array;

    struct Hoge{real p; int i;}
    auto pq = new BinaryHeap!(Array!Hoge, "a.p < b.p");
    foreach (i; 0..N) pq.insert(Hoge(P[i] * Q[i], i));

    real ans = 0;
    
    const int TRY = 10^^6;
    foreach (i; 1..TRY+1) {
        auto t = pq.front;
        ans += i * t.p;
        pq.replaceFront(Hoge(t.p * (1 - Q[t.i]), t.i));
    }

    writefln("%.9f", ans);
}


0