#5307. Problem 1. Angry Cows
Problem 1. Angry Cows
Problem 1. Angry Cows
USACO 2016 January Contest, Silver
Bessie the cow has designed what she thinks will be the next big hit video game: "Angry Cows". The premise, which she believes is completely original, is that the player shoots cows with a slingshot into a one-dimensional scene consisting of a set of hay bales located at various points on a number line. Each cow lands with sufficient force to detonate the hay bales in close proximity to her landing site. The goal is to use a set of cows to detonate all the hay bales.
There are hay bales located at distinct integer positions on the number line. If a cow is launched with power landing at position , this will causes a blast of "radius ", destroying all hay bales within the range .
A total of cows are available to shoot, each with the same power . Please determine the minimum integer value of such that it is possible to use the cows to detonate every single hay bale in the scene.
INPUT FORMAT (file angry.in):
The first line of input contains () and (). The remaining lines all contain integers (each in the range ).
OUTPUT FORMAT (file angry.out):
Please output the minimum power with which each cow must be launched in order to detonate all the hay bales.
SAMPLE INPUT:
7 2 20 25 18 8 10 3 1
SAMPLE OUTPUT:
5
Problem credits: Brian Dean