結果

問題 No.210 探し物はどこですか?
ユーザー maine_honzukimaine_honzuki
提出日時 2020-12-22 13:00:27
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,678 ms / 2,000 ms
コード長 675 bytes
コンパイル時間 2,359 ms
コンパイル使用メモリ 207,756 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-21 14:08:36
合計ジャッジ時間 64,798 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 993 ms
5,248 KB
testcase_01 AC 847 ms
5,376 KB
testcase_02 AC 894 ms
5,376 KB
testcase_03 AC 1,403 ms
5,376 KB
testcase_04 AC 1,368 ms
5,376 KB
testcase_05 AC 1,361 ms
5,376 KB
testcase_06 AC 1,380 ms
5,376 KB
testcase_07 AC 1,374 ms
5,376 KB
testcase_08 AC 1,356 ms
5,376 KB
testcase_09 AC 1,357 ms
5,376 KB
testcase_10 AC 1,344 ms
5,376 KB
testcase_11 AC 1,359 ms
5,376 KB
testcase_12 AC 1,356 ms
5,376 KB
testcase_13 AC 1,469 ms
5,376 KB
testcase_14 AC 1,512 ms
5,376 KB
testcase_15 AC 1,510 ms
5,376 KB
testcase_16 AC 1,484 ms
5,376 KB
testcase_17 AC 1,525 ms
5,376 KB
testcase_18 AC 1,208 ms
5,376 KB
testcase_19 AC 1,237 ms
5,376 KB
testcase_20 AC 1,254 ms
5,376 KB
testcase_21 AC 1,231 ms
5,376 KB
testcase_22 AC 1,239 ms
5,376 KB
testcase_23 AC 1,563 ms
5,376 KB
testcase_24 AC 1,678 ms
5,376 KB
testcase_25 AC 1,591 ms
5,376 KB
testcase_26 AC 1,569 ms
5,376 KB
testcase_27 AC 1,547 ms
5,376 KB
testcase_28 AC 1,121 ms
5,376 KB
testcase_29 AC 1,137 ms
5,376 KB
testcase_30 AC 1,132 ms
5,376 KB
testcase_31 AC 1,132 ms
5,376 KB
testcase_32 AC 1,133 ms
5,376 KB
testcase_33 AC 1,617 ms
5,376 KB
testcase_34 AC 1,581 ms
5,376 KB
testcase_35 AC 1,615 ms
5,376 KB
testcase_36 AC 1,595 ms
5,376 KB
testcase_37 AC 1,584 ms
5,376 KB
testcase_38 AC 1,219 ms
5,376 KB
testcase_39 AC 1,219 ms
5,376 KB
testcase_40 AC 1,206 ms
5,376 KB
testcase_41 AC 1,224 ms
5,376 KB
testcase_42 AC 1,216 ms
5,376 KB
testcase_43 AC 216 ms
5,376 KB
testcase_44 AC 329 ms
5,376 KB
testcase_45 AC 1,389 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
    int N;
    cin >> N;
    vector<double> P(N), Q(N);
    for (int i = 0; i < N; i++) {
        cin >> P[i];
        P[i] /= 1000;
    }
    for (int i = 0; i < N; i++) {
        cin >> Q[i];
        Q[i] /= 100;
    }

    priority_queue<pair<double, int>> que;
    for (int i = 0; i < N; i++) {
        que.push({P[i] * Q[i], i});
    }

    double ans = 0;
    int num = 1;
    while (num < 1e7) {
        auto p = que.top();
        que.pop();
        ans += num * p.first;
        p.first *= (1 - Q[p.second]);
        que.push(p);
        num++;
    }
    cout << fixed << setprecision(4) << ans << endl;
}
0