문제
To qualify for cow camp, Bessie needs to earn a good score on the last problem of the USACOW Open contest. This problem has distinct test cases () weighted equally, with the first test case being the sample case. Her final score will equal the number of test cases that her last submission passes.
Unfortunately, Bessie is way too tired to think about the problem, but since the answer to each test case is either "yes" or "no," she has a plan! Precisely, she decides to repeatedly submit the following nondeterministic solution:
if input == sample_input: print sample_output else: print "yes" or "no" each with probability 1/2, independently for each test case
Note that for all test cases besides the sample, this program may produce a different output when resubmitted, so the number of test cases that it passes will vary.
Bessie knows that she cannot submit more than () times in total because then she will certainly be disqualified. What is the maximum possible expected value of Bessie's final score, assuming that she follows the optimal strategy?
입력
The only line of input contains two space-separated integers and
출력
The answer as a decimal that differs by at most absolute or relative error from the actual answer.
예제 입력 1
2 3
예제 출력 1
1.875
예제 입력 2
4 2
예제 출력 2
2.8750000000000000000
점수
Test cases 3-6 satisfy and Test cases 7-9 satisfy Test cases 10-17 satisfy no additional constraints.
코드를 제출하려면 로그인이 필요합니다.
로그인