結果

問題 No.210 探し物はどこですか?
ユーザー nebukuro09nebukuro09
提出日時 2017-06-02 13:43:28
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 1,891 ms / 2,000 ms
コード長 718 bytes
コンパイル時間 2,573 ms
コンパイル使用メモリ 178,744 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-12 19:39:31
合計ジャッジ時間 26,244 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 297 ms
6,812 KB
testcase_01 AC 368 ms
6,944 KB
testcase_02 AC 400 ms
6,944 KB
testcase_03 AC 1,344 ms
6,940 KB
testcase_04 AC 220 ms
6,944 KB
testcase_05 AC 251 ms
6,940 KB
testcase_06 AC 1,891 ms
6,940 KB
testcase_07 AC 259 ms
6,944 KB
testcase_08 AC 193 ms
6,944 KB
testcase_09 AC 204 ms
6,940 KB
testcase_10 AC 203 ms
6,940 KB
testcase_11 AC 192 ms
6,940 KB
testcase_12 AC 193 ms
6,940 KB
testcase_13 AC 413 ms
6,940 KB
testcase_14 AC 381 ms
6,944 KB
testcase_15 AC 384 ms
6,944 KB
testcase_16 AC 412 ms
6,940 KB
testcase_17 AC 384 ms
6,944 KB
testcase_18 AC 354 ms
6,944 KB
testcase_19 AC 350 ms
6,944 KB
testcase_20 AC 349 ms
6,944 KB
testcase_21 AC 347 ms
6,940 KB
testcase_22 AC 349 ms
6,944 KB
testcase_23 AC 539 ms
6,940 KB
testcase_24 AC 530 ms
6,940 KB
testcase_25 AC 531 ms
6,944 KB
testcase_26 AC 533 ms
6,940 KB
testcase_27 AC 533 ms
6,940 KB
testcase_28 AC 451 ms
6,944 KB
testcase_29 AC 451 ms
6,944 KB
testcase_30 AC 439 ms
6,944 KB
testcase_31 AC 446 ms
6,940 KB
testcase_32 AC 444 ms
6,944 KB
testcase_33 AC 584 ms
6,944 KB
testcase_34 AC 580 ms
6,940 KB
testcase_35 AC 578 ms
6,940 KB
testcase_36 AC 580 ms
6,940 KB
testcase_37 AC 611 ms
6,944 KB
testcase_38 AC 479 ms
6,944 KB
testcase_39 AC 480 ms
6,944 KB
testcase_40 AC 485 ms
6,940 KB
testcase_41 AC 482 ms
6,940 KB
testcase_42 AC 480 ms
6,944 KB
testcase_43 AC 62 ms
6,940 KB
testcase_44 AC 230 ms
6,944 KB
testcase_45 AC 1,805 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 < b");
    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