結果

問題 No.210 探し物はどこですか?
ユーザー mkawa2mkawa2
提出日時 2020-01-28 12:43:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,778 ms / 2,000 ms
コード長 1,184 bytes
コンパイル時間 765 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 83,200 KB
最終ジャッジ日時 2024-09-15 12:37:37
合計ジャッジ時間 66,626 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 956 ms
76,928 KB
testcase_01 AC 1,145 ms
78,336 KB
testcase_02 AC 1,224 ms
81,408 KB
testcase_03 AC 1,207 ms
77,056 KB
testcase_04 AC 1,145 ms
76,160 KB
testcase_05 AC 1,160 ms
76,800 KB
testcase_06 AC 1,186 ms
76,416 KB
testcase_07 AC 1,195 ms
76,416 KB
testcase_08 AC 1,146 ms
77,056 KB
testcase_09 AC 1,261 ms
77,056 KB
testcase_10 AC 1,213 ms
76,928 KB
testcase_11 AC 1,156 ms
76,672 KB
testcase_12 AC 1,242 ms
76,800 KB
testcase_13 AC 1,464 ms
77,056 KB
testcase_14 AC 1,764 ms
76,928 KB
testcase_15 AC 1,629 ms
77,056 KB
testcase_16 AC 1,493 ms
76,544 KB
testcase_17 AC 1,378 ms
76,672 KB
testcase_18 AC 1,029 ms
77,696 KB
testcase_19 AC 1,021 ms
77,440 KB
testcase_20 AC 1,031 ms
77,440 KB
testcase_21 AC 1,020 ms
77,568 KB
testcase_22 AC 1,013 ms
77,184 KB
testcase_23 AC 1,574 ms
78,592 KB
testcase_24 AC 1,582 ms
78,592 KB
testcase_25 AC 1,671 ms
77,952 KB
testcase_26 AC 1,571 ms
78,592 KB
testcase_27 AC 1,664 ms
79,872 KB
testcase_28 AC 1,465 ms
79,744 KB
testcase_29 AC 1,439 ms
79,360 KB
testcase_30 AC 1,450 ms
79,360 KB
testcase_31 AC 1,464 ms
79,744 KB
testcase_32 AC 1,439 ms
79,872 KB
testcase_33 AC 1,764 ms
82,176 KB
testcase_34 AC 1,704 ms
82,816 KB
testcase_35 AC 1,778 ms
82,304 KB
testcase_36 AC 1,693 ms
83,200 KB
testcase_37 AC 1,710 ms
82,944 KB
testcase_38 AC 1,618 ms
81,536 KB
testcase_39 AC 1,681 ms
81,920 KB
testcase_40 AC 1,650 ms
81,664 KB
testcase_41 AC 1,617 ms
82,176 KB
testcase_42 AC 1,656 ms
82,048 KB
testcase_43 AC 98 ms
75,264 KB
testcase_44 AC 828 ms
75,520 KB
testcase_45 AC 1,261 ms
76,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10 ** 6)
int1 = lambda x: int(x) - 1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.readline())
def MI(): return map(int, sys.stdin.readline().split())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def SI(): return sys.stdin.readline()[:-1]

from heapq import *
def main():
    # 期待値の基本通り、確率×回数の和を求めていく
    # 「次にどの部屋を探せばよいか」を最適化する
    # もちろん「最も見つかる確率の高い部屋」がよい
    # ある部屋でk回目に見つかる確率はp*(1-q)^(k-1)*q
    # 各部屋の確率をheapqにいれて、確率の高い部屋を順次探していく
    # 探すたびに確率×回数を答えに足していく
    # 十分な回数を行えば収束する
    n=II()
    pp=LI()
    qq=LI()
    hp=[]
    ans=0
    for i,(p,q) in enumerate(zip(pp,qq)):
        heappush(hp,(-p*q/100000,i))
    loop=3000000
    for cnt in range(1,loop):
        pq,i=heappop(hp)
        ans+=-pq*cnt
        heappush(hp,(pq*(1-qq[i]/100),i))
    print(ans)

main()
0