結果

問題 No.210 探し物はどこですか?
ユーザー mkawa2mkawa2
提出日時 2020-05-16 13:52:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,232 ms / 2,000 ms
コード長 1,184 bytes
コンパイル時間 84 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-09-22 07:34:05
合計ジャッジ時間 49,114 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 938 ms
10,752 KB
testcase_01 AC 1,128 ms
10,880 KB
testcase_02 AC 1,169 ms
10,880 KB
testcase_03 AC 863 ms
10,880 KB
testcase_04 AC 829 ms
10,752 KB
testcase_05 AC 835 ms
10,752 KB
testcase_06 AC 825 ms
10,752 KB
testcase_07 AC 823 ms
10,880 KB
testcase_08 AC 778 ms
10,752 KB
testcase_09 AC 792 ms
10,752 KB
testcase_10 AC 820 ms
10,752 KB
testcase_11 AC 775 ms
10,752 KB
testcase_12 AC 837 ms
10,752 KB
testcase_13 AC 1,025 ms
10,880 KB
testcase_14 AC 1,195 ms
10,880 KB
testcase_15 AC 1,126 ms
10,752 KB
testcase_16 AC 1,105 ms
10,752 KB
testcase_17 AC 1,188 ms
10,752 KB
testcase_18 AC 843 ms
10,752 KB
testcase_19 AC 854 ms
10,752 KB
testcase_20 AC 857 ms
10,752 KB
testcase_21 AC 858 ms
10,752 KB
testcase_22 AC 856 ms
10,752 KB
testcase_23 AC 1,120 ms
10,880 KB
testcase_24 AC 1,080 ms
10,880 KB
testcase_25 AC 1,087 ms
10,880 KB
testcase_26 AC 1,094 ms
10,880 KB
testcase_27 AC 1,097 ms
10,880 KB
testcase_28 AC 1,094 ms
10,880 KB
testcase_29 AC 1,101 ms
10,880 KB
testcase_30 AC 1,093 ms
10,880 KB
testcase_31 AC 1,090 ms
10,880 KB
testcase_32 AC 1,095 ms
10,880 KB
testcase_33 AC 1,193 ms
10,880 KB
testcase_34 AC 1,225 ms
10,880 KB
testcase_35 AC 1,194 ms
10,880 KB
testcase_36 AC 1,232 ms
11,008 KB
testcase_37 AC 1,223 ms
10,880 KB
testcase_38 AC 1,230 ms
10,880 KB
testcase_39 AC 1,214 ms
10,880 KB
testcase_40 AC 1,207 ms
10,880 KB
testcase_41 AC 1,200 ms
10,880 KB
testcase_42 AC 1,202 ms
10,880 KB
testcase_43 AC 380 ms
10,752 KB
testcase_44 AC 824 ms
10,752 KB
testcase_45 AC 840 ms
10,752 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=1000000
    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