結果

問題 No.1151 チャレンジゲーム
ユーザー 37zigen37zigen
提出日時 2020-08-09 03:57:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 654 ms / 2,000 ms
コード長 724 bytes
コンパイル時間 341 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 92,624 KB
最終ジャッジ日時 2024-10-03 04:56:35
合計ジャッジ時間 22,444 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,612 KB
testcase_01 AC 39 ms
52,628 KB
testcase_02 AC 63 ms
68,800 KB
testcase_03 AC 37 ms
53,120 KB
testcase_04 AC 37 ms
52,676 KB
testcase_05 AC 37 ms
53,568 KB
testcase_06 AC 37 ms
52,740 KB
testcase_07 AC 38 ms
52,604 KB
testcase_08 AC 37 ms
52,768 KB
testcase_09 AC 38 ms
53,288 KB
testcase_10 AC 39 ms
53,076 KB
testcase_11 AC 62 ms
68,876 KB
testcase_12 AC 61 ms
69,784 KB
testcase_13 AC 328 ms
82,100 KB
testcase_14 AC 334 ms
81,716 KB
testcase_15 AC 333 ms
81,776 KB
testcase_16 AC 324 ms
81,748 KB
testcase_17 AC 349 ms
81,744 KB
testcase_18 AC 328 ms
81,496 KB
testcase_19 AC 349 ms
82,080 KB
testcase_20 AC 317 ms
81,516 KB
testcase_21 AC 332 ms
81,748 KB
testcase_22 AC 333 ms
81,756 KB
testcase_23 AC 344 ms
81,980 KB
testcase_24 AC 340 ms
81,908 KB
testcase_25 AC 323 ms
81,476 KB
testcase_26 AC 332 ms
81,860 KB
testcase_27 AC 334 ms
82,008 KB
testcase_28 AC 625 ms
92,280 KB
testcase_29 AC 582 ms
91,592 KB
testcase_30 AC 633 ms
92,444 KB
testcase_31 AC 610 ms
91,392 KB
testcase_32 AC 623 ms
91,676 KB
testcase_33 AC 630 ms
91,780 KB
testcase_34 AC 643 ms
92,344 KB
testcase_35 AC 624 ms
91,772 KB
testcase_36 AC 600 ms
91,580 KB
testcase_37 AC 592 ms
91,528 KB
testcase_38 AC 654 ms
92,624 KB
testcase_39 AC 598 ms
91,932 KB
testcase_40 AC 631 ms
91,844 KB
testcase_41 AC 599 ms
92,076 KB
testcase_42 AC 612 ms
91,752 KB
testcase_43 AC 619 ms
91,992 KB
testcase_44 AC 631 ms
92,072 KB
testcase_45 AC 643 ms
91,912 KB
testcase_46 AC 608 ms
92,060 KB
testcase_47 AC 591 ms
92,088 KB
testcase_48 AC 420 ms
90,080 KB
testcase_49 AC 537 ms
90,688 KB
testcase_50 AC 608 ms
91,784 KB
testcase_51 AC 624 ms
92,024 KB
testcase_52 AC 611 ms
91,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=[int(x) for x in input().split()]
s=[0]*(1<<N)
for i in range(1<<N):
    for j in range(N):
        if (i&(1<<j))>0:
            s[i]+=A[j]
dp={}
def f(a,b,t):
    if (a|b)==(1<<N)-1:
        return 1 if 2*s[a]+t>2*s[b] else 0
    c=int((a|(b<<N))*t)
    if c in dp:
        return dp[c]
    ret=0
    for i in range(N):
        na=a|(1<<i)
        if (na|b)==(a|b):
            continue
        e=1
        for j in range(N):
            nb=b|(1<<j)
            if (a|nb)==(a|b):
                continue
            p,q=A[i],A[j]
            v=1/p-f(b,na,t*(-1))/p+f(a,nb,t)/q*(1-1/p)
            v/=(p+q-1)/(p*q)
            e=min(e,v)
        ret=max(ret,e)
    dp[c]=ret
    return ret
print(f(0,0,-1))
0