結果

問題 No.210 探し物はどこですか?
ユーザー sugim48sugim48
提出日時 2015-05-15 23:46:24
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 1,045 bytes
コンパイル時間 725 ms
コンパイル使用メモリ 81,976 KB
実行使用メモリ 13,884 KB
最終ジャッジ日時 2024-07-06 04:25:47
合計ジャッジ時間 14,168 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 156 ms
13,884 KB
testcase_01 AC 707 ms
6,944 KB
testcase_02 AC 1,379 ms
6,940 KB
testcase_03 AC 902 ms
6,944 KB
testcase_04 AC 803 ms
6,940 KB
testcase_05 AC 322 ms
6,940 KB
testcase_06 AC 242 ms
6,940 KB
testcase_07 AC 733 ms
6,940 KB
testcase_08 AC 528 ms
6,940 KB
testcase_09 AC 560 ms
6,940 KB
testcase_10 AC 561 ms
6,940 KB
testcase_11 AC 661 ms
6,944 KB
testcase_12 AC 669 ms
6,944 KB
testcase_13 AC 1,406 ms
6,940 KB
testcase_14 TLE -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _USE_MATH_DEFINES
#include <algorithm>
#include <cstdio>
#include <functional>
#include <iostream>
#include <cfloat>
#include <climits>
#include <cstring>
#include <cmath>
#include <map>
#include <queue>
#include <set>
#include <sstream>
#include <stack>
#include <string>
#include <time.h>
#include <vector>
using namespace std;

typedef long long ll;
typedef unsigned long long ull;
typedef pair<int, int> i_i;
typedef pair<ll, int> ll_i;
typedef pair<double, int> d_i;
typedef pair<ll, ll> ll_ll;
typedef pair<double, double> d_d;
struct edge { int u, v; ll w; };

ll MOD = 1000000007;
ll _MOD = 1000000009;
double EPS = 1e-10;

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;
	}
	double e = 0;
	for (int t = 1; t <= 1000000; t++) {
		int _i = 0;
		for (int i = 0; i < n; i++)
			if (p[i] * q[i] > p[_i] * q[_i])
				_i = i;
		e += p[_i] * q[_i] * t;
		p[_i] *= 1 - q[_i];
	}
	cout << e << endl;
}
0