A special site for solving fun programming problems and challenges, interested in computer science, programming, basics, data structure and algorithms

 


Racing Horses Problem Code: HORSES
Submit

Chef is very fond of horses. He enjoys watching them race. As expected, he has a stable full of horses. He, along with his friends, goes to his stable during the weekends to watch a few of these horses race. Chef wants his friends to enjoy the race and so he wants the race to be close. This can happen only if the horses are comparable on their skill i.e. the difference in their skills is less.

There are N horses in the stable. The skill of the horse i is represented by an integer S[i]. The Chef needs to pick 2 horses for the race such that the difference in their skills is minimum. This way, he would be able to host a very interesting race. Your task is to help him do this and report the minimum difference that is possible between 2 horses in the race.

Input:

First line of the input file contains a single integer T, the number of test cases.
Every test case starts with a line containing the integer N.
The next line contains N space separated integers where the i-th integer is S[i].

Output:

For each test case, output a single line containing the minimum difference that is possible.

Constraints:

1 ≤ T ≤ 10
2 ≤ N ≤ 5000
1 ≤ S[i] ≤ 1000000000

Sample Input 1 

1
5
4 9 1 32 13

Sample Output 1 

3

Explanation

The minimum difference can be achieved if we pick horses with skills 1 and 4 for the race.

solution in cpp:

#include<iostream>

#include<climits>

#include<algorithm>

using namespace std;


class solution

{

public:

void solve()

{

int n;

cin >> n;

int* arr = new int[n];

for (int i = 0; i < n; i++)

{

cin >> arr[i];

}

sort(arr,arr + n);

int dif = 0, minimum = INT_MAX;

for (int i = 0; i < n; i++)

{

dif = abs(arr[i] - arr[i + 1]);

if (dif < minimum)

minimum = dif;

}

cout << minimum << "\n";

delete[] arr;

}

};

int main()

{

solution ss;


int t;

cin >> t;

while (t--)

    {

ss.solve();

}


return 0;

}



No comments:

Post a Comment