結果

問題 No.210 探し物はどこですか?
ユーザー 沙耶花沙耶花
提出日時 2021-11-04 20:47:13
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 736 bytes
コンパイル時間 4,293 ms
コンパイル使用メモリ 262,740 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-15 03:06:12
合計ジャッジ時間 38,102 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 194 ms
5,248 KB
testcase_01 AC 915 ms
5,248 KB
testcase_02 WA -
testcase_03 AC 49 ms
5,248 KB
testcase_04 AC 41 ms
5,248 KB
testcase_05 AC 41 ms
5,248 KB
testcase_06 AC 45 ms
5,248 KB
testcase_07 AC 40 ms
5,248 KB
testcase_08 AC 19 ms
5,248 KB
testcase_09 AC 19 ms
5,248 KB
testcase_10 AC 19 ms
5,248 KB
testcase_11 AC 25 ms
5,248 KB
testcase_12 AC 25 ms
5,248 KB
testcase_13 AC 199 ms
5,248 KB
testcase_14 AC 205 ms
5,248 KB
testcase_15 AC 203 ms
5,248 KB
testcase_16 AC 200 ms
5,248 KB
testcase_17 AC 210 ms
5,248 KB
testcase_18 AC 193 ms
5,248 KB
testcase_19 AC 195 ms
5,248 KB
testcase_20 AC 193 ms
5,248 KB
testcase_21 AC 190 ms
5,248 KB
testcase_22 AC 197 ms
5,248 KB
testcase_23 AC 934 ms
5,248 KB
testcase_24 AC 937 ms
5,248 KB
testcase_25 AC 929 ms
5,248 KB
testcase_26 AC 925 ms
5,248 KB
testcase_27 AC 917 ms
5,248 KB
testcase_28 AC 936 ms
5,248 KB
testcase_29 AC 912 ms
5,248 KB
testcase_30 AC 912 ms
5,248 KB
testcase_31 AC 920 ms
5,248 KB
testcase_32 AC 919 ms
5,248 KB
testcase_33 AC 1,851 ms
5,248 KB
testcase_34 AC 1,841 ms
5,248 KB
testcase_35 AC 1,820 ms
5,248 KB
testcase_36 AC 1,824 ms
5,248 KB
testcase_37 AC 1,816 ms
5,248 KB
testcase_38 AC 1,860 ms
5,248 KB
testcase_39 AC 1,825 ms
5,248 KB
testcase_40 AC 1,820 ms
5,248 KB
testcase_41 AC 1,806 ms
5,248 KB
testcase_42 AC 1,808 ms
5,248 KB
testcase_43 AC 7 ms
5,248 KB
testcase_44 AC 2 ms
5,248 KB
testcase_45 AC 46 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using mint = modint1000000007;
using namespace std;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf 1000000000000000
	
int main(){	
	
	int n;
	cin>>n;
	
	vector<double> p(n),q(n);
	rep(i,n){
		cin>>p[i];
		p[i] /= 1000.0;
	}
	rep(i,n){
		cin>>q[i];
		q[i] /= 100.0;
	}
	
	
	
	
	double ans = 0.0;
	double pp = 1.0;
	
	rep(_,450000){
		ans += pp;
		int ind = 0;
		rep(i,n){
			if(p[i]*q[i]>p[ind]*q[ind])ind = i;
		}
		
		pp *= 1.0 - p[ind]*q[ind];
		p[ind] *= 1.0-q[ind];
		double ps = 0.0;
		rep(i,n)ps += p[i];
		if(ps<1e-10)break;
		rep(i,n){
			p[i] = p[i] / ps;
		}
	}
	
	cout<<fixed<<setprecision(10)<<ans<<endl;

	return 0;
	
}
0