Preparando MOJI

Packets

1000ms 262144K

Description:

You have $$$n$$$ coins, each of the same value of $$$1$$$.

Distribute them into packets such that any amount $$$x$$$ ($$$1 \leq x \leq n$$$) can be formed using some (possibly one or all) number of these packets.

Each packet may only be used entirely or not used at all. No packet may be used more than once in the formation of the single $$$x$$$, however it may be reused for the formation of other $$$x$$$'s.

Find the minimum number of packets in such a distribution.

Input:

The only line contains a single integer $$$n$$$ ($$$1 \leq n \leq 10^9$$$) — the number of coins you have.

Output:

Output a single integer — the minimum possible number of packets, satisfying the condition above.

Sample Input:

6

Sample Output:

3

Sample Input:

2

Sample Output:

2

Note:

In the first example, three packets with $$$1$$$, $$$2$$$ and $$$3$$$ coins can be made to get any amount $$$x$$$ ($$$1\leq x\leq 6$$$).

  • To get $$$1$$$ use the packet with $$$1$$$ coin.
  • To get $$$2$$$ use the packet with $$$2$$$ coins.
  • To get $$$3$$$ use the packet with $$$3$$$ coins.
  • To get $$$4$$$ use packets with $$$1$$$ and $$$3$$$ coins.
  • To get $$$5$$$ use packets with $$$2$$$ and $$$3$$$ coins
  • To get $$$6$$$ use all packets.

In the second example, two packets with $$$1$$$ and $$$1$$$ coins can be made to get any amount $$$x$$$ ($$$1\leq x\leq 2$$$).

Informação

Codeforces

Provedor Codeforces

Código CF1037A

Tags

constructive algorithmsgreedymath

Submetido 0

BOUA! 0

Taxa de BOUA's 0%

Datas 09/05/2023 09:38:32

Relacionados

Nada ainda