結果

問題 No.210 探し物はどこですか?
ユーザー izuru_matsuuraizuru_matsuura
提出日時 2016-09-15 22:19:56
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,651 bytes
コンパイル時間 1,811 ms
コンパイル使用メモリ 174,416 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-17 06:15:11
合計ジャッジ時間 3,405 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 3 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 2 ms
5,248 KB
testcase_44 AC 2 ms
5,248 KB
testcase_45 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

namespace {

    typedef double real;
    typedef long long ll;

    template<class T> ostream& operator<<(ostream& os, const vector<T>& vs) {
        if (vs.empty()) return os << "[]";
        auto i = vs.begin();
        os << "[" << *i;
        for (++i; i != vs.end(); ++i) os << " " << *i;
        return os << "]";
    }
    template<class T> istream& operator>>(istream& is, vector<T>& vs) {
        for (auto it = vs.begin(); it != vs.end(); it++) is >> *it;
        return is;
    }

    int N;
    vector<real> P, Q;
    void input() {
        cin >> N;
        P.resize(N); Q.resize(N);
        for (int i = 0; i < N; i++) {
            real p; cin >> p; p /= 1000;
            P[i] = p;
        }
        for (int i = 0; i < N; i++) {
            real q; cin >> q; q /= 100;
            Q[i] = q;
        }
    }

    struct S : pair<real, int> {
        S(real a, int b) : pair<real,int>(a, b) {}
        bool operator<(const S& o) const {
            return first * Q[second] < o.first * Q[o.second];
        }
    };

    void solve() {
        priority_queue<S> PQ;
        for (int i = 0; i < N; i++) PQ.emplace(P[i], i);
        real ans = 1.0;
        real mother = 1.0;
        for (int t = 1; t <= 1000; t++) {
            auto pi = PQ.top(); PQ.pop();
            real p = pi.first;
            real index = pi.second;
            real q = Q[index];
            mother -= p * q;
            real np = p * (1.0 - q);
            ans += mother;
            PQ.emplace(np, index);
        }
        printf("%.12f\n", ans);
    }
}

int main() {
    input(); solve();
    return 0;
}

0