Codeforces Round #261 (Div. 2) B
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.
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).
The only line of output should contain two integers. The maximum beauty difference and the number of ways this may happen, respectively.
2
1 2
1 1
3
1 4 5
4 1
5
3 1 2 3 1
2 4
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.
题意:求花的最大差值,以及选取两种花能组成最大差值的有多少方法
解法:当然是记录最大最小之差,至于求选取方法,我们统计最大有多少,最小有多少,乘一下
1 #include<bits/stdc++.h> 2 using namespace std; 3 map<int,int>q; 4 int main() 5 { 6 int Max=-1,Min=(1<<31)-1; 7 long long n; 8 cin>>n; 9 for(int i=1;i<=n;i++) 10 { 11 int num; 12 cin>>num; 13 Max=max(num,Max); 14 Min=min(Min,num); 15 q[num]++; 16 } 17 if(q.size()==1) 18 { 19 cout<<"0"<<" "<<n*(n-1)/2<<endl; 20 } 21 else 22 { 23 cout<<Max-Min<<" "<<(long long)q[Min]*q[Max]<<endl; 24 } 25 // cout<<Max-Min<<" "<<q[Max]*q[Min]<<endl; 26 return 0; 27 }
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
· 基于Microsoft.Extensions.AI核心库实现RAG应用
· Linux系列:如何用heaptrack跟踪.NET程序的非托管内存泄露
· 开发者必知的日志记录最佳实践
· TypeScript + Deepseek 打造卜卦网站:技术与玄学的结合
· Manus的开源复刻OpenManus初探
· AI 智能体引爆开源社区「GitHub 热点速览」
· 从HTTP原因短语缺失研究HTTP/2和HTTP/3的设计差异
· 三行代码完成国际化适配,妙~啊~