結果

問題 No.1151 チャレンジゲーム
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2020-08-16 22:20:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 243 ms / 2,000 ms
コード長 794 bytes
コンパイル時間 236 ms
コンパイル使用メモリ 82,816 KB
実行使用メモリ 81,436 KB
最終ジャッジ日時 2024-10-11 10:44:32
合計ジャッジ時間 9,349 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,480 KB
testcase_01 AC 39 ms
52,224 KB
testcase_02 AC 52 ms
62,976 KB
testcase_03 AC 39 ms
52,096 KB
testcase_04 AC 37 ms
51,968 KB
testcase_05 AC 38 ms
52,224 KB
testcase_06 AC 38 ms
52,480 KB
testcase_07 AC 38 ms
51,968 KB
testcase_08 AC 40 ms
52,352 KB
testcase_09 AC 43 ms
52,736 KB
testcase_10 AC 41 ms
52,992 KB
testcase_11 AC 47 ms
60,616 KB
testcase_12 AC 51 ms
63,104 KB
testcase_13 AC 156 ms
78,592 KB
testcase_14 AC 137 ms
77,512 KB
testcase_15 AC 138 ms
77,696 KB
testcase_16 AC 168 ms
78,324 KB
testcase_17 AC 161 ms
78,212 KB
testcase_18 AC 139 ms
77,764 KB
testcase_19 AC 149 ms
77,512 KB
testcase_20 AC 128 ms
77,464 KB
testcase_21 AC 145 ms
78,020 KB
testcase_22 AC 115 ms
77,140 KB
testcase_23 AC 134 ms
77,156 KB
testcase_24 AC 139 ms
77,360 KB
testcase_25 AC 156 ms
78,332 KB
testcase_26 AC 151 ms
78,208 KB
testcase_27 AC 141 ms
77,788 KB
testcase_28 AC 201 ms
79,252 KB
testcase_29 AC 220 ms
80,564 KB
testcase_30 AC 184 ms
79,048 KB
testcase_31 AC 206 ms
80,216 KB
testcase_32 AC 180 ms
79,104 KB
testcase_33 AC 206 ms
80,664 KB
testcase_34 AC 207 ms
79,780 KB
testcase_35 AC 188 ms
79,824 KB
testcase_36 AC 243 ms
81,436 KB
testcase_37 AC 231 ms
80,296 KB
testcase_38 AC 203 ms
79,804 KB
testcase_39 AC 179 ms
79,488 KB
testcase_40 AC 184 ms
79,564 KB
testcase_41 AC 169 ms
78,932 KB
testcase_42 AC 222 ms
81,156 KB
testcase_43 AC 207 ms
80,644 KB
testcase_44 AC 192 ms
79,744 KB
testcase_45 AC 204 ms
79,720 KB
testcase_46 AC 218 ms
81,104 KB
testcase_47 AC 180 ms
79,112 KB
testcase_48 AC 149 ms
77,496 KB
testcase_49 AC 130 ms
77,244 KB
testcase_50 AC 182 ms
78,440 KB
testcase_51 AC 187 ms
79,388 KB
testcase_52 AC 235 ms
80,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int,input().split()))

count = [0]*(1<<n)
for i in range(1<<n):
    for j in range(n):
        if i>>j & 1:
            count[i] += a[j]

d = {}

def cal(s,t):
    if t <= 0:
        return 1
    if s == 0:
        return 0
    sta = s+ (t<<n)
    h = count[s]
    if sta in d:
        return d[sta]
    now = 0
    for i in range(n):
        if not s>>i & 1:
            continue
        nf = s^(1<<i)
        sco = 1
        for j in range(n):
            if not s>>j & 1:
                continue
            ns = s^(1<<j)
            p,q = 1/a[i],1/a[j]
            x,y = 1-cal(nf,h+1-t),cal(ns,t)
            v = (p*x+(1-p)*q*y)/(p+q-p*q)
            sco = min(sco,v)
        now = max(sco,now)
    d[sta] = now
    return now
print(cal((1<<n)-1,sum(a)//2+1))
0