結果

問題 No.210 探し物はどこですか?
ユーザー ctyl_0ctyl_0
提出日時 2015-09-29 00:15:35
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 247 ms / 2,000 ms
コード長 1,298 bytes
コンパイル時間 735 ms
コンパイル使用メモリ 91,488 KB
実行使用メモリ 11,748 KB
最終ジャッジ日時 2024-07-19 11:27:39
合計ジャッジ時間 5,211 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
5,248 KB
testcase_01 AC 58 ms
7,640 KB
testcase_02 AC 121 ms
11,620 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 3 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 14 ms
5,376 KB
testcase_14 AC 13 ms
5,376 KB
testcase_15 AC 14 ms
5,376 KB
testcase_16 AC 14 ms
5,376 KB
testcase_17 AC 14 ms
5,376 KB
testcase_18 AC 14 ms
5,376 KB
testcase_19 AC 14 ms
5,376 KB
testcase_20 AC 14 ms
5,376 KB
testcase_21 AC 14 ms
5,376 KB
testcase_22 AC 14 ms
5,376 KB
testcase_23 AC 91 ms
7,640 KB
testcase_24 AC 93 ms
7,512 KB
testcase_25 AC 90 ms
7,580 KB
testcase_26 AC 90 ms
7,516 KB
testcase_27 AC 92 ms
7,636 KB
testcase_28 AC 74 ms
7,640 KB
testcase_29 AC 75 ms
7,516 KB
testcase_30 AC 75 ms
7,512 KB
testcase_31 AC 72 ms
7,640 KB
testcase_32 AC 75 ms
7,512 KB
testcase_33 AC 230 ms
11,748 KB
testcase_34 AC 230 ms
11,748 KB
testcase_35 AC 225 ms
11,620 KB
testcase_36 AC 227 ms
11,748 KB
testcase_37 AC 247 ms
11,624 KB
testcase_38 AC 159 ms
11,748 KB
testcase_39 AC 159 ms
11,620 KB
testcase_40 AC 155 ms
11,684 KB
testcase_41 AC 156 ms
11,748 KB
testcase_42 AC 157 ms
11,624 KB
testcase_43 AC 2 ms
5,376 KB
testcase_44 AC 3 ms
5,376 KB
testcase_45 AC 3 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, 1000){
        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