結果

問題 No.210 探し物はどこですか?
ユーザー mkawa2mkawa2
提出日時 2020-05-16 13:51:13
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,183 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,592 KB
実行使用メモリ 78,516 KB
最終ジャッジ日時 2024-09-22 07:32:07
合計ジャッジ時間 12,087 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 184 ms
76,724 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 196 ms
77,120 KB
testcase_04 AC 181 ms
76,684 KB
testcase_05 AC 172 ms
76,600 KB
testcase_06 AC 186 ms
76,380 KB
testcase_07 AC 181 ms
76,820 KB
testcase_08 AC 141 ms
76,688 KB
testcase_09 AC 167 ms
76,780 KB
testcase_10 AC 141 ms
76,676 KB
testcase_11 AC 136 ms
76,468 KB
testcase_12 AC 142 ms
76,768 KB
testcase_13 AC 184 ms
76,912 KB
testcase_14 AC 215 ms
77,248 KB
testcase_15 AC 222 ms
76,808 KB
testcase_16 AC 201 ms
76,752 KB
testcase_17 AC 228 ms
76,804 KB
testcase_18 AC 215 ms
77,060 KB
testcase_19 AC 214 ms
77,224 KB
testcase_20 AC 222 ms
77,120 KB
testcase_21 AC 213 ms
76,988 KB
testcase_22 AC 219 ms
76,752 KB
testcase_23 AC 272 ms
77,692 KB
testcase_24 AC 263 ms
77,316 KB
testcase_25 AC 270 ms
77,524 KB
testcase_26 AC 269 ms
77,468 KB
testcase_27 AC 272 ms
77,608 KB
testcase_28 AC 254 ms
77,176 KB
testcase_29 AC 262 ms
77,144 KB
testcase_30 AC 264 ms
77,316 KB
testcase_31 AC 253 ms
76,820 KB
testcase_32 AC 255 ms
77,516 KB
testcase_33 AC 298 ms
78,028 KB
testcase_34 AC 296 ms
78,264 KB
testcase_35 AC 297 ms
77,920 KB
testcase_36 AC 292 ms
77,948 KB
testcase_37 AC 292 ms
78,132 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 51 ms
72,124 KB
testcase_44 AC 122 ms
76,564 KB
testcase_45 AC 190 ms
76,884 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=300000
    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