Codeforces 459B Pashmak and Flowers

题目链接:http://codeforces.com/problemset/problem/459/B

 

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:

  1. The maximum beauty difference of flowers that Pashmak can give to Parmida.
  2. 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.

 

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

大致题意:一个人买两支花,然后要这两支花的漂亮程度差最大,并且问产生这种最大差值的情况有几种,输出最大的差值,和有几种。(坑点就是  如果花朵美丽程度都相等 得另外特判一下)。
#include <stdio.h>
#include <algorithm>
using namespace std;
int main()
{
    int n ;
    int num[200010];
    while ( ~scanf("%d",&n ) )
    {
        for ( int i = 0 ; i < n ; i++ )
        {
            scanf("%d",&num[i]);
        }
        sort(num,num+n);
        __int64 cou1 = 1 ,cou2 = 1;
        for (int i = 0 ; i < n-1 ; i++ )
        {
            if(num[i] == num[i+1] )
            {
                cou1++;
                continue;
            }
                break;
        }
        for (int i = n-1 ; i >=1 ; i-- )
        {
            if(num[i] == num[i-1] )
            {
                cou2++;
                continue;
            }
                break;
        }
        //printf("%d\n",cou1);
        if ( cou1 == n)
        {
            printf("%d %I64d\n",num[n-1]-num[0],cou1*(cou1-1)/2);
        }
        else if ( cou1 != n)
            printf("%d %I64d\n",num[n-1]-num[0],cou1*cou2);
    }
    return 0;
}


</pre><p></p>
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值