zoukankan      html  css  js  c++  java
  • 寒假CF- WA了不要怕!

    //好像读错题了,而且各种坑爹的错误

    -。-以前的代码,忘记这题目在讲什么了

    Description

    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 Input

    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

    Hint

    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<stdio.h>
    
    #include<algorithm>
    
    using namespace std;
    
    int main()
    
    {
    
    int n,i;
    
    while(~scanf("%d",&n))
    
    {
    
    int a[200012];
    
    for(i=0;i<n;i++)
    
    {scanf("%d",&a[i]);}
    
    sort(a,a+n);
    
    int max=a[n-1];
    
    int min=a[0];
    
    int count1=0;
    
    int count2=0;
    
    for(i=0;i<n;i++)
    
    {
    
    if(a[i]==max)
    
    count1++;
    
    if(a[i]==min)
    
    count2++;
    
    }
    
    if(max==min)
    
    printf("0 %I64d
    ",(__int64)n*(n-1)/2);
    
    else
    
    printf("%d %I64d
    ",max-min,(__int64)count1*count2);
    
    }
    
    return 0;
    
    }
  • 相关阅读:
    phpfpm进程数设置多少合适
    GitLab的安装及使用教程
    男人的中年危机坏在哪?(转载)
    让敏捷落地,从“认识自我”开始
    优化你的架构设计
    工作中的那点事儿是工作经验,还是思路给了你生存的能力(原创)
    窗口过程处理WndProc遇到的问题
    CodeBlocks 10.0+OpenCV 2.4.0配置方法
    OpenCV在VS2010下永久性配置
    Win8下的STCISP下载问题解决
  • 原文地址:https://www.cnblogs.com/awsent/p/4267002.html
Copyright © 2011-2022 走看看