Problem E
A1 Paper

Björn likes the square root of two,
Taping two A2 papers together along their long side turns
them into an A1 paper, two A3 papers give an A2 paper, and so
on. Given the number of papers of different sizes that Björn
has, can you figure out how much tape he needs to make an A1
paper? Assume that the length of tape needed to join together
two sheets of papers is equal to their long side. An A2 paper
is
Input
The first line of input contains a single integer
Output
If Björn has enough paper to make an A1 paper, output a
single floating point number, the smallest total length of tape
needed in meters. Otherwise output “impossible”. The output number should have an
absolute error of at most
Sample Input 1 | Sample Output 1 |
---|---|
4 1 0 5 |
1.60965532263 |
Sample Input 2 | Sample Output 2 |
---|---|
3 0 3 |
impossible |