您的位置:首页 > 其它

CF_459B_PashmakAndFlowers

2015-08-09 23:45 381 查看
B. Pashmak and Flowers

time limit per test
1 second

memory limit per test
256 megabytes

input
standard input

output
standard output

Pashmak decided to give Parmida a pair of flowers from the garden. There are
n flowers 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:

The maximum beauty difference of flowers that Pashmak can give to Parmida.
The number of ways that Pashmak can pick the flowers. Two ways are considered different if and only if there is at least one flower that is chosen in the first way and not chosen in the second way.

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.

Sample test(s)

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:

choosing the first and the second flowers;
choosing the first and the fifth flowers;
choosing the fourth and the second flowers;
choosing the fourth and the fifth flowers.

简单的模拟题

题目说那个姑娘?只喜欢美丽值差别最大的两朵花

问送给她这两朵花的方法有多少种

唯独需要注意的就是如果所有花都一样

那么这两种花的取法与其他情况不同

#include <iostream>
#include <stdio.h>

using namespace std;
int main()
{
int n;
int be;
int mi=1e9+1,ma=0;
long long nmi=0,nma=0;
scanf("%d",&n);
for(int i=0;i<n;i++)
{
scanf("%d",&be);
if(be==mi)
nmi++;
if(be<mi)
{
mi=be;
nmi=1;
}

if(be==ma)
nma++;
if(be>ma)
{

ma=be;
nma=1;
}

//cout<<mi<<" "<<ma<<" "<<nmi<<" "<<nma<<endl;
}
if(ma==mi)
printf("0 %I64d\n",nma*(nma-1)/2);
else
printf("%d %I64d\n",ma-mi,nma*nmi);
return 0;
}



内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: