結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 212 ms
6,812 KB
testcase_01 AC 281 ms
6,944 KB
testcase_02 AC 309 ms
6,944 KB
testcase_03 AC 915 ms
6,940 KB
testcase_04 AC 159 ms
6,944 KB
testcase_05 AC 179 ms
6,940 KB
testcase_06 AC 886 ms
6,940 KB
testcase_07 AC 172 ms
6,940 KB
testcase_08 AC 140 ms
6,944 KB
testcase_09 AC 144 ms
6,944 KB
testcase_10 AC 143 ms
6,940 KB
testcase_11 AC 141 ms
6,940 KB
testcase_12 AC 143 ms
6,944 KB
testcase_13 AC 290 ms
6,944 KB
testcase_14 AC 284 ms
6,940 KB
testcase_15 AC 276 ms
6,944 KB
testcase_16 AC 289 ms
6,940 KB
testcase_17 AC 275 ms
6,944 KB
testcase_18 AC 247 ms
6,940 KB
testcase_19 AC 246 ms
6,944 KB
testcase_20 AC 253 ms
6,940 KB
testcase_21 AC 288 ms
6,940 KB
testcase_22 AC 286 ms
6,940 KB
testcase_23 AC 368 ms
6,940 KB
testcase_24 AC 363 ms
6,940 KB
testcase_25 AC 362 ms
6,940 KB
testcase_26 AC 397 ms
6,940 KB
testcase_27 AC 370 ms
6,944 KB
testcase_28 AC 319 ms
6,940 KB
testcase_29 AC 330 ms
6,940 KB
testcase_30 AC 328 ms
6,944 KB
testcase_31 AC 318 ms
6,940 KB
testcase_32 AC 317 ms
6,944 KB
testcase_33 AC 412 ms
6,944 KB
testcase_34 AC 402 ms
6,940 KB
testcase_35 AC 400 ms
6,944 KB
testcase_36 AC 404 ms
6,940 KB
testcase_37 AC 400 ms
6,944 KB
testcase_38 AC 342 ms
6,944 KB
testcase_39 AC 341 ms
6,940 KB
testcase_40 AC 343 ms
6,940 KB
testcase_41 AC 347 ms
6,940 KB
testcase_42 AC 343 ms
6,944 KB
testcase_43 AC 59 ms
6,944 KB
testcase_44 AC 111 ms
6,940 KB
testcase_45 AC 1,043 ms
6,940 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;

    auto pq = new BinaryHeap!(Array!(Tuple!(real, int)), "a[0] < b[0]");
    foreach (i; 0..N) pq.insert(tuple(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[0];
        pq.replaceFront(tuple(t[0] * (1 - Q[t[1]]), t[1]));
    }

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