結果

問題 No.210 探し物はどこですか?
ユーザー mayoko_mayoko_
提出日時 2015-05-16 00:26:28
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 120 ms / 2,000 ms
コード長 968 bytes
コンパイル時間 1,440 ms
コンパイル使用メモリ 163,960 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-06 04:37:24
合計ジャッジ時間 6,823 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
5,248 KB
testcase_01 AC 76 ms
5,376 KB
testcase_02 AC 78 ms
5,376 KB
testcase_03 AC 120 ms
5,376 KB
testcase_04 AC 113 ms
5,376 KB
testcase_05 AC 116 ms
5,376 KB
testcase_06 AC 119 ms
5,376 KB
testcase_07 AC 113 ms
5,376 KB
testcase_08 AC 75 ms
5,376 KB
testcase_09 AC 78 ms
5,376 KB
testcase_10 AC 80 ms
5,376 KB
testcase_11 AC 88 ms
5,376 KB
testcase_12 AC 89 ms
5,376 KB
testcase_13 AC 83 ms
5,376 KB
testcase_14 AC 110 ms
5,376 KB
testcase_15 AC 110 ms
5,376 KB
testcase_16 AC 105 ms
5,376 KB
testcase_17 AC 116 ms
5,376 KB
testcase_18 AC 60 ms
5,376 KB
testcase_19 AC 64 ms
5,376 KB
testcase_20 AC 64 ms
5,376 KB
testcase_21 AC 65 ms
5,376 KB
testcase_22 AC 65 ms
5,376 KB
testcase_23 AC 85 ms
5,376 KB
testcase_24 AC 88 ms
5,376 KB
testcase_25 AC 90 ms
5,376 KB
testcase_26 AC 89 ms
5,376 KB
testcase_27 AC 89 ms
5,376 KB
testcase_28 AC 100 ms
5,376 KB
testcase_29 AC 102 ms
5,376 KB
testcase_30 AC 103 ms
5,376 KB
testcase_31 AC 102 ms
5,376 KB
testcase_32 AC 105 ms
5,376 KB
testcase_33 AC 109 ms
5,376 KB
testcase_34 AC 109 ms
5,376 KB
testcase_35 AC 108 ms
5,376 KB
testcase_36 AC 108 ms
5,376 KB
testcase_37 AC 108 ms
5,376 KB
testcase_38 AC 109 ms
5,376 KB
testcase_39 AC 108 ms
5,376 KB
testcase_40 AC 109 ms
5,376 KB
testcase_41 AC 108 ms
5,376 KB
testcase_42 AC 108 ms
5,376 KB
testcase_43 AC 14 ms
5,376 KB
testcase_44 AC 26 ms
5,376 KB
testcase_45 AC 119 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#define rep(i, n) for (int (i) = 0; (i) < (int)(n); (i)++)

const int dx[] = {1, 0, -1, 0};
const int dy[] = {0, 1, 0, -1};
using namespace std;
typedef long long ll;
typedef vector<int> vi;
typedef vector<ll> vll;
typedef pair<int, int> pii;

double p[1111], q[1111], r[1111];

int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);
    int n;
    cin >> 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(make_pair(p[i]*q[i], i));
    }
    double ans = 0;
    for (int i = 1; i < 1000000; i++) {
        auto now = que.top(); que.pop();
        ans += now.first * i;
        double next = now.first * (1-q[now.second]);
        que.push(make_pair(next, now.second));
    }
    printf("%.10lf\n", ans);
    return 0;
}
0