結果
問題 | No.1151 チャレンジゲーム |
ユーザー | Kiri8128 |
提出日時 | 2020-07-03 01:42:12 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 469 ms / 2,000 ms |
コード長 | 589 bytes |
コンパイル時間 | 292 ms |
コンパイル使用メモリ | 82,472 KB |
実行使用メモリ | 85,540 KB |
最終ジャッジ日時 | 2024-09-17 05:11:44 |
合計ジャッジ時間 | 16,416 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 50 |
ソースコード
N = int(input()) A = [int(a) for a in input().split()] D = {} def prob(i, j, s, t, h): p, q, a, b = 1 / A[i], 1 / A[j], 1 - calc(s ^ (1 << i), h + 1 - t), calc(s ^ (1 << j), t) x = (p * a + (1 - p) * q * b) / (p + q - p * q) return x def calc(s, t): if t <= 0: return 1 if s == 0: return 0 y = s + (t << N) if y in D: return D[y] h = sum([A[i] for i in range(N) if s >> i & 1]) D[y] = max([min([prob(i, j, s, t, h) for j in range(N) if s >> j & 1] + [1]) for i in range(N) if s >> i & 1] + [0]) return D[y] print(calc((1 << N) - 1, sum(A) // 2 + 1))