#ABC115C. Christmas Eve
Christmas Eve
题目描述
In some other world, today is Christmas Eve.
There are trees planted in Mr. Takaha's garden. The height of the -th tree is meters.
He decides to choose trees from these trees and decorate them with electric lights. To make the scenery more beautiful, the heights of the decorated trees should be as close to each other as possible.
More specifically, let the height of the tallest decorated tree be meters, and the height of the shortest decorated tree be meters. The smaller the value is, the better. What is the minimum possible value of ?
在另一个世界,今天是平安夜。
高叶先生的花园里种了 棵树。 -three 的高度是 米。
他决定从这些树中挑选 棵用电灯装饰。为了使景色更加美丽,装饰过的树的高度应尽可能接近。
更具体地说,让装饰得最高的树的高度为 米,装饰得最矮的树的高度为 米。 的值越小越好。 的最小值是多少?
输入格式
输入内容按以下格式标准输入:
输出格式
打印 的最小可能值。
样例 #1
样例输入 #1
5 3
10
15
11
14
12
样例输出 #1
2
样例 #2
样例输入 #2
5 3
5
7
5
7
7
样例输出 #2
0
说明
数据规模与约定
- 是整数。
样例 解释
如果我们装饰第一、第三和第五棵树, ,那么 。这是最佳结果。
样例 解释
如果我们装饰第二、第四和第五棵树, ,那么 。这是最佳结果。
在这些样本输入中,树的数量并不多,但要注意最多可能有十万棵树(只是我们不能在这里放置十万行的样本)。