We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
int main() {
/* Enter your code here. Read input from STDIN. Print output to STDOUT */
int n,k;
cin>>n>>k;
for(int i=0;i>arr[i];
sort(arr,arr+n);
int ans=1e9;
for(int i=k-1;i
c++
short answer no need to loop. just sort input and pickup max-min is result. but instruction is test all pairs and it's need loop to follow instuction.
short c++ solution
include
include
include
include
include
using namespace std; int arr[100010];
int main() { /* Enter your code here. Read input from STDIN. Print output to STDOUT */
int n,k; cin>>n>>k; for(int i=0;i>arr[i]; sort(arr,arr+n); int ans=1e9; for(int i=k-1;i