【CODEFORCES】 B. Pashmak and Flowers
2571 단어 모방하다codeforces
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.
문제풀이: 정렬이 끝난 후에 최대 값 개수를 취하고 최소 값 개수를 곱하면 방안 수입니다. 여기에 int를 사용하면 초과할 수 있으니 주의하십시오.그리고 모든 데이터가 같을 때는 특수하게 처리해야 하기 때문에 물문제는 많지 않다.
#include<iostream>
#include<algorithm>
using namespace std;
long long q[200002],x[200002],n,h,p,i,max1;
int main()
{
cin >>n;
for (int i=0;i<=n-1;i++) cin >>x[i];
sort(x,x+n);
max1=x[n-1]-x[0]; h=-1;
while (i<=n-1)
{
p=1;
while (x[i]==x[i+1])
{
i++;
p++;
}
h++;
q[h]=p;
i++;
}
if (h==0)
{
cout <<max1<<" "<<(n*(n-1))/2<<endl;
return 0;
}
else cout <<max1<<" "<<q[0]*q[h]<<endl;
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Codeforces Round #510 (Div. 2) D. Petya and Array 좌압과 세그먼트 트리문제는 바꿔 말하면, 구간 $[l, r)$의 부분합이 $t$ 미만의 부분합이 되는, $l,r$의 수를 요구하고 싶다. 즉, $a_0$에서 있는 $a_i$까지의 합을 index로, 출현 횟수를 값으로 하는 세그먼트 트...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.