結果

問題 No.210 探し物はどこですか?
ユーザー pekempeypekempey
提出日時 2016-12-23 01:38:17
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 525 bytes
コンパイル時間 2,783 ms
コンパイル使用メモリ 174,480 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-08 11:21:34
合計ジャッジ時間 3,651 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 3 ms
5,376 KB
testcase_13 AC 3 ms
5,376 KB
testcase_14 AC 3 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 3 ms
5,376 KB
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,376 KB
testcase_44 AC 2 ms
5,376 KB
testcase_45 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
	int n;
	cin >> n;
	vector<double> p(n), q(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.emplace(p[i] * q[i], i);
	}

	double E = 0;
	for (int i = 1; i < 10000; i++) {
		double x;
		int y;
		tie(x, y) = que.top(); que.pop();
		E += i * x;
		que.emplace(x * (1 - q[y]), y);
	}

	printf("%.20f\n", E);
}
0