$\textbf{Note:There is no dependency between this problem and problem Multiply 2 Divide 2.}$
Frank_DD has a sequence $a$ of length $n(1 \leq n \leq 10^5,1 \leq a_i \leq 10^5)$.
For each operation, he selects a number $a_i(1 \le i \le n)$ and changes it to $a_i\cdot 2$ or $\lfloor \frac{a_i}{2} \rfloor$.
Frank_DD wants to know the minimum number of operations to change the sequence $a$ to a non-descending sequence.
To help Frank_DD solve this problem, ddy guesses that the number in the result sequence can't be very large, and it will not exceed $2^{127}-1$, which means that every number in the result sequence can be held in a 128-bit signed integer variable.
Formally, he guesses that for each sequence $a$ that satisfies the constraints, there will always be a way that the number of operations is minimal, and in the result sequence, $a_n<2^{127}$.
So, he writes a program relying on this idea.
But unfortunately, the idea is wrong, so this program can be hacked.
Now you should construct a sequence to hack the program of ddy. Your solution is considered correct if and only if this sequence satisfies the constraints, and the idea of ddy is wrong to this sequence.