結果

問題 No.210 探し物はどこですか?
ユーザー ctyl_0ctyl_0
提出日時 2015-09-29 00:14:21
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 1,682 ms / 2,000 ms
コード長 1,298 bytes
コンパイル時間 757 ms
コンパイル使用メモリ 89,772 KB
実行使用メモリ 68,968 KB
最終ジャッジ日時 2024-07-19 11:27:31
合計ジャッジ時間 25,284 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
7,380 KB
testcase_01 AC 344 ms
35,944 KB
testcase_02 AC 701 ms
68,964 KB
testcase_03 AC 10 ms
5,376 KB
testcase_04 AC 9 ms
5,376 KB
testcase_05 AC 9 ms
5,376 KB
testcase_06 AC 9 ms
5,376 KB
testcase_07 AC 8 ms
5,376 KB
testcase_08 AC 7 ms
5,376 KB
testcase_09 AC 7 ms
5,376 KB
testcase_10 AC 7 ms
5,376 KB
testcase_11 AC 7 ms
5,376 KB
testcase_12 AC 7 ms
5,376 KB
testcase_13 AC 98 ms
7,504 KB
testcase_14 AC 98 ms
7,376 KB
testcase_15 AC 98 ms
7,376 KB
testcase_16 AC 95 ms
7,504 KB
testcase_17 AC 97 ms
7,504 KB
testcase_18 AC 79 ms
7,380 KB
testcase_19 AC 78 ms
7,372 KB
testcase_20 AC 76 ms
7,372 KB
testcase_21 AC 81 ms
7,380 KB
testcase_22 AC 83 ms
7,380 KB
testcase_23 AC 766 ms
36,188 KB
testcase_24 AC 748 ms
36,060 KB
testcase_25 AC 759 ms
36,184 KB
testcase_26 AC 760 ms
36,056 KB
testcase_27 AC 807 ms
36,184 KB
testcase_28 AC 624 ms
36,188 KB
testcase_29 AC 609 ms
36,056 KB
testcase_30 AC 604 ms
35,968 KB
testcase_31 AC 611 ms
36,184 KB
testcase_32 AC 615 ms
36,184 KB
testcase_33 AC 1,675 ms
68,964 KB
testcase_34 AC 1,629 ms
68,836 KB
testcase_35 AC 1,682 ms
68,968 KB
testcase_36 AC 1,649 ms
68,964 KB
testcase_37 AC 1,630 ms
68,836 KB
testcase_38 AC 1,139 ms
68,964 KB
testcase_39 AC 1,135 ms
68,964 KB
testcase_40 AC 1,131 ms
68,960 KB
testcase_41 AC 1,194 ms
68,960 KB
testcase_42 AC 1,190 ms
68,960 KB
testcase_43 AC 2 ms
5,376 KB
testcase_44 AC 6 ms
5,376 KB
testcase_45 AC 10 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <iomanip>
#include <vector>
#include <algorithm>
#include <numeric>
#include <functional>
#include <cmath>
#include <queue>
#include <stack>
#include <set>
#include <map>

#define repd(i,a,b) for (int i=(a);i<(b);i++)
#define rep(i,n) repd(i,0,n)
typedef long long ll;

using namespace std;


int inputValue(){
    int a;
    cin >> a;
    return a;
};

template <typename T>
void output(T a, int precision) {
    if(precision > 0){
        cout << fixed << setprecision(precision)  << a << "\n";
    }
    else{
        cout << a << "\n";
    }
}

int main() {
    
    // source code
    int N = inputValue();
    vector<double> P(N), Q(N);
    
    rep(i, N){
        P[i] = (double)inputValue() / 1000.0;
    }
    rep(i, N){
        Q[i] = (double)inputValue() / 100.0;
    }
    
    priority_queue<double> pq;
    
    vector<double> R(N);
    rep(j, N){
        R[j] = P[j] * Q[j];
        pq.push(R[j]);
    }
    
    rep(i, 5000){
        rep(j, N){
            pq.push(R[j] * (1 - Q[j]));
            R[j] = R[j] * (1 - Q[j]);
        }
    }
    
    int cnt = 1;
    double ret = 0;
    while (!pq.empty()) {
        double t = pq.top();
        pq.pop();
        
        ret += t * cnt;
        cnt++;
    }
    
    output(ret, 5);
    
    return 0;
}
0