标签:using and sid main sample sub most strong nec
Pashmak decided to give Parmida a pair of flowers from the garden. There are nflowers in the garden and the i-th of them has a beauty number bi. Parmida is a very strange girl so she doesn‘t want to have the two most beautiful flowers necessarily. She wants to have those pairs of flowers that their beauty difference is maximal possible!
Your task is to write a program which calculates two things:
Input
The first line of the input contains n (2?≤?n?≤?2·105). In the next line there are n space-separated integers b1, b2, ..., bn (1?≤?bi?≤?109).
Output
The only line of output should contain two integers. The maximum beauty difference and the number of ways this may happen, respectively.
Example
Input 2 1 2 Output 1 1
Input 3 1 4 5 Output 4 1
Input 5 3 1 2 3 1 Output 2 4
Note
In the third sample the maximum beauty difference is 2 and there are 4 ways to do this:
my code is folowing.
#include <iostream> using namespace std; int main() { long long n; while( cin >> n ) { int i; long long *b=new long long[n]; for(i=0;i<n;i++) cin>>b[i]; long long maxn=b[0],minn=b[0],m=0,k=0; for(i=0;i<n;i++) { if(b[i]>maxn) maxn=b[i]; } for(i=0;i<n;i++) { if(b[i]<minn) minn=b[i]; } for(i=0;i<n;i++) { if(b[i]==maxn) m=m+1; if(b[i]==minn) k=k+1; } cout<<(maxn-minn)<<" "<<(maxn==minn)?(n*(n-1)/2):(m*k); } return 0; }
标签:using and sid main sample sub most strong nec
原文地址:http://www.cnblogs.com/wongyi/p/7773878.html