Problem of the day
Oasis visits a Florist Shop. Shop has N flowers each being of a specific type and every flower costs 1 unit.
You are given type of each flower in an array P = [p1,p2,...,pN]. If he buys a flower of type P’ , then he will get all flowers whose type lies between P’ to P’+4 (both inclusive) for free.
You need to find and print the price Oasis has to pay to buy all flowers.
The first line contains an integer N i.e. number of flowers.
Next line will contain N integers, representing the types of N flowers.
Output Format
Print minimum cost with which Oasis could buy all of flowers.
1 <= N <= 10^5
0 <= pi <= 10^4
5
1 2 3 17 10
3