codeforces-337A(Puzzles)

题目:Puzzles

The end of the school year is near and Ms. Manana, the teacher, will soon have to say goodbye to a yet another class. She decided to prepare a goodbye present for her n students and give each of them a jigsaw puzzle (which, as wikipedia states, is a tiling puzzle that requires the assembly of numerous small, often oddly shaped, interlocking and tessellating pieces).
The shop assistant told the teacher that there are m puzzles in the shop, but they might differ in difficulty and size. Specifically, the first jigsaw puzzle consists of f1 pieces, the second one consists of f2 pieces and so on.
Ms. Manana doesn’t want to upset the children, so she decided that the difference between the numbers of pieces in her presents must be as small as possible. Let A be the number of pieces in the largest puzzle that the teacher buys and B be the number of pieces in the smallest such puzzle. She wants to choose such n puzzles that A - B is minimum possible. Help the teacher and find the least possible value of A - B.

Input

The first line contains space-separated integers n and m (2 ≤ n ≤ m ≤ 50). The second line contains m space-separated integers f1, f2, …, fm (4 ≤ fi ≤ 1000) — the quantities of pieces in the puzzles sold in the shop.

Output

Print a single integer — the least possible difference the teacher can obtain.

Examples

Input
4 6
10 12 10 7 5 22
Output
5

Note

Sample 1. The class has 4 students. The shop sells 6 puzzles. If Ms. Manana buys the first four puzzles consisting of 10, 12, 10 and 7 pieces correspondingly, then the difference between the sizes of the largest and the smallest puzzle will be equal to 5. It is impossible to obtain a smaller difference. Note that the teacher can also buy puzzles 1, 3, 4 and 5 to obtain the difference 5.

题目大意:

第一行输入两个整数n和m表示从m个数中选n个数
第二行有m个数
要使选的n个数的最大值和最小值最小,并输出两者之间的差

解题思路:

先对数据进行排序(从小到大)在对每个间隔n进行求差a[i+n-1]-a[i],输出最小的差

AC代码:

#include <cstdio>
int a[55];
int main()
{
    int n,m;
    while(~scanf("%d %d",&n,&m))
    {
        for(int i=0; i<m; i++)
            scanf("%d",&a[i]);
        for(int i=0; i<m; i++)
        {
            for(int j=i; j<m; j++)
            {
                int mid;
                if(a[j]<a[i])
                {
                    mid=a[i];
                    a[i]=a[j];
                    a[j]=mid;
                }
            }
        }
        int ans=-1;
        int mid;
        for(int i=0;i<m-n+1;i++)
        {
            mid=a[i+n-1]-a[i];
            if(mid<ans||ans==-1)
                ans=mid;
        }
        printf("%d\n",ans);
    }
    return 0;
}

猜你喜欢

转载自blog.csdn.net/qq_43984169/article/details/86762624