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.
题意:
给出 N 个数,找出最大的相差值,还有输出构成这个最大相差数的方法数。
思路:
模拟。sort 一遍之后直接找头尾两部分即可,记得输出答案要用 long long。
AC:
#include <cstdio> #include <cstring> #include <algorithm> using namespace std; typedef long long ll; int num[200005]; int main() { int n; scanf("%d", &n); for (int i = 0; i < n; ++i) scanf("%d", &num[i]); sort(num, num + n); printf("%d ", num[n - 1] - num[0]); ll ans1 = 0; int from; for (int i = n - 1; i >= 0; --i) { if (num[i] == num[n - 1]) { ++ans1; from = i; } else break; } ll ans2 = 0; int to; for (int i = 0; i < n; ++i) { if (num[i] == num[0]) { ++ans2; to = i; } else break; } if (to == n - 1) printf("%I64d\n", (ll)n * (n - 1) / 2); else printf("%I64d\n", ans1 * ans2); return 0; }
相关推荐
这种方法可以模拟人类的学习过程,通过试错来优化决策策略。 Ox-Flowers17数据集提供的train.txt文件可能是对图像数据的标注信息,包括图像的类别和路径,这对于监督学习至关重要。通过这个文件,我们可以构建训练...
训练集和验证集各包含1020张图片,此外还包括额外6149的额外测试集图像。更加详细的数据集介绍可以参考:https://www.robots.ox.ac.uk/~vgg/data/flowers/102/
《flowers数据集——深度学习中的图像分类实践》 在计算机视觉领域,图像分类是一项基础且重要的任务,它涉及识别和区分图像中的不同类别。这里我们要探讨的是“flowers数据集”,这是一个专门为花卉分类设计的图像...
《17flowers图片数据集:探索与应用》 在当今的计算机视觉领域,图像数据集是训练和评估机器学习模型的重要资源。"17flowers图片数据集"正是这样一个宝贵的资料库,它专为图片分类任务设计,对于研究者和开发者来说...
"Flowers Recognition(花卉识别数据集).zip" 提供了一个专用于花卉识别的数据集,它在训练计算机进行花卉图像分类上起着基础性的作用。本文将详细介绍这个数据集及其在深度学习中的应用。 首先,我们来看“Flowers ...
【Wordpress Vector Flowers模板】是一款专为WordPress设计的精美花卉主题模板,旨在为网站赋予生动、优雅的视觉效果。这款模板充分利用了向量图形的优势,确保在任何屏幕尺寸上都能呈现出清晰、细腻的图像,无论是...
标题中的"17flowers.rar"是一个压缩包文件,其中包含了1360张与花相关的图像数据。这些图像被精心地归类为17个不同的类别,每类代表一种特定的花。描述中提到,图像的尺寸不尽相同,有的是500x500像素,有的则是500...
Oxford 102 Flowers Dataset 是一个花卉集合数据集,主要用于图像分类,它分为 102 个类别共计 102 种花,其中每个类别包含 40 到 258 张图像。 该数据集由牛津大学工程科学系于 2008 年发布,相关论文有...
《flowers.zip:一个丰富多彩的数据集探索》 在信息技术领域,数据集是研究、开发和学习算法的重要工具。这里我们关注的“flowers.zip”文件,它是一个包含多种花卉图像的样本数据集,对于机器学习,尤其是计算机...
Oxford 102 Flowers Dataset 是一个花卉集合数据集,主要用于图像分类,它分为 102 个类别共计 102 种花,其中每个类别包含 40 到 258 张图像。 该数据集由牛津大学工程科学系于 2008 年发布,相关论文有...
标题 "17flowers.tgz" 指向的是一个压缩文件,它包含了著名的Oxford 17类鲜花数据集。这个数据集广泛用于计算机视觉领域,特别是深度学习和图像识别的训练与验证。数据集源自 TensorFlow Learn(tflearn)的一个示例...
tensorflow tf_flowers数据集, win路径C:\Users\yourname\tensorflow_datasets\tf_flowers\3.0.1\*, linux路径:/root/tensorflow_datasets/tf_flowers/3.0.1/*
每个类别下的图像数量可能不等,这有助于模拟真实世界中的不平衡数据分布情况,对模型的泛化能力提出挑战。 这个数据集的结构是按照类别进行划分的,共有17个文件夹,每个文件夹代表一种花卉,内部包含该类花卉的多...
《17flowers_data.rar》是一个压缩包文件,包含与机器学习相关的数据集,特别是用于图像分类的任务。这个数据集被称为“17flowers”,意指它包含17个不同种类的花卉图片,是机器学习领域中一个经典的多类别图像识别...
《深度学习:基于Oxford 102 Flowers数据集的花卉识别》 在人工智能领域,深度学习已经成为图像识别和计算机视觉任务的核心技术。Oxford 102 Flowers数据集是深度学习研究者们广泛使用的资源,它为花卉分类提供了一...
"17flowers数据集"是一个专门用于图像分类任务的资源,尤其适合深度学习模型的训练和验证。这个数据集包含了17种不同类型的花卉图片,每种花卉都有自己的分类,使得它成为研究计算机视觉和机器学习领域中多类别分类...
- **重力和风力模拟**:引入简单的物理规则,如重力影响花瓣下落,风力影响花瓣的偏移,增加真实感。 - **粒子系统**:将花瓣视为粒子系统的一部分,通过控制粒子的生成和销毁,模拟群体行为。 总的来说,“Flowers...
OxfordFlowers_102_102flowers.tgz
“Hidden In Flowers”作为Wallpaper Engine中的一款作品,可能是指一款以花朵为主题的动态壁纸。这个标题暗示了设计者可能通过细腻的图像和动画效果,将一些隐藏的元素或故事巧妙地融入了盛开的花丛中,为用户带来...
【标题】"timu.rar_flowers"所关联的知识点主要涉及英语语法、词汇以及语境理解,特别是关于动词短语、代词及其在句中的应用。在这个题目中,我们看到一个英语填空题,目的是考察学生对于动词短语搭配及代词选择的...