結果

問題 No.210 探し物はどこですか?
ユーザー motimoti
提出日時 2015-07-29 11:11:10
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 271 ms / 2,000 ms
コード長 781 bytes
コンパイル時間 790 ms
コンパイル使用メモリ 95,572 KB
実行使用メモリ 13,376 KB
最終ジャッジ日時 2024-07-17 21:53:37
合計ジャッジ時間 6,213 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
6,812 KB
testcase_01 AC 72 ms
7,892 KB
testcase_02 AC 147 ms
13,072 KB
testcase_03 AC 3 ms
6,944 KB
testcase_04 AC 3 ms
6,944 KB
testcase_05 AC 3 ms
6,940 KB
testcase_06 AC 3 ms
6,940 KB
testcase_07 AC 3 ms
6,944 KB
testcase_08 AC 3 ms
6,940 KB
testcase_09 AC 3 ms
6,940 KB
testcase_10 AC 3 ms
6,944 KB
testcase_11 AC 3 ms
6,944 KB
testcase_12 AC 3 ms
6,944 KB
testcase_13 AC 17 ms
6,944 KB
testcase_14 AC 17 ms
6,940 KB
testcase_15 AC 17 ms
6,940 KB
testcase_16 AC 17 ms
6,940 KB
testcase_17 AC 18 ms
6,940 KB
testcase_18 AC 17 ms
6,940 KB
testcase_19 AC 17 ms
6,944 KB
testcase_20 AC 17 ms
6,944 KB
testcase_21 AC 17 ms
6,940 KB
testcase_22 AC 17 ms
6,944 KB
testcase_23 AC 111 ms
8,920 KB
testcase_24 AC 114 ms
8,656 KB
testcase_25 AC 110 ms
8,916 KB
testcase_26 AC 114 ms
8,152 KB
testcase_27 AC 109 ms
7,764 KB
testcase_28 AC 91 ms
8,656 KB
testcase_29 AC 91 ms
8,272 KB
testcase_30 AC 93 ms
8,020 KB
testcase_31 AC 90 ms
8,148 KB
testcase_32 AC 93 ms
8,660 KB
testcase_33 AC 267 ms
12,740 KB
testcase_34 AC 271 ms
12,664 KB
testcase_35 AC 270 ms
13,376 KB
testcase_36 AC 268 ms
12,660 KB
testcase_37 AC 258 ms
12,700 KB
testcase_38 AC 197 ms
11,928 KB
testcase_39 AC 206 ms
12,360 KB
testcase_40 AC 206 ms
12,112 KB
testcase_41 AC 186 ms
12,240 KB
testcase_42 AC 184 ms
12,108 KB
testcase_43 AC 2 ms
6,944 KB
testcase_44 AC 3 ms
6,940 KB
testcase_45 AC 3 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <cmath>
#include <vector>
#include <complex>
#include <queue>
#include <deque>
#include <set>
#include <map>
#include <unordered_set>
#include <unordered_map>
#include <iomanip>
#include <assert.h>

using namespace std;

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

typedef long long ll;

int main() {

  int N; cin >> N;
  double p[N], q[N];
  rep(i, N) cin >> p[i], p[i] /= 1000;
  rep(i, N) cin >> q[i], q[i] /= 100;

  priority_queue<double> pq;
  rep(k, 1000) {
    rep(i, N) {
      pq.emplace(p[i] * pow(1-q[i], k) * q[i]);
    }
  }

  double res = 0.0;
  int cnt = 1;
  while(!pq.empty()) {
    res += (cnt++) * pq.top(); pq.pop();
  }

  cout << setprecision(6) << res << endl;

  return 0;
}
0