$\mathbf{Algorithm} \text{ ElisaDrinksCider}(n):$
$\quad \mathbf{if}\ n = 1\ \mathbf{then}$
$\quad \quad \text{order Fibonachos}$
$\quad \mathbf{else}$
$\quad \quad \ElisaDrinksCider(n / 2);$
$\quad \quad \text{drink n bottles of cider};$
$\quad \quad \ElisaDrinksCider(n / 2)$
$\quad \mathbf{endif}$
We can calculate the first couple of values of $ C(n) $ to see if we can find a pattern.
$ C(1) = 0 $
$ C(2) = 2 $
Thus, we know that $ C(n) = n log{ n } $ is the correct answer.