You are given an array of integers. Vasya can permute (change order) its integers. He wants to do it so that as many as possible integers will become on a place where a smaller integer used to stand. Help Vasya find the maximal number of such integers.

For instance, if we are given an array [10,20,30,40][10,20,30,40], we can permute it so that it becomes [20,40,10,30][20,40,10,30]. Then on the first and the second positions the integers became larger (20>1020>10, 40>2040>20) and did not on the third and the fourth, so for this permutation, the number that Vasya wants to maximize equals 22. Read the note for the first example, there is one more demonstrative test case.

Help Vasya to permute integers in such way that the number of positions in a new array, where integers are greater than in the original one, is maximal.

Input

The first line contains a single integer nn (1≤n≤1051≤n≤105) — the length of the array.

The second line contains nn integers a1,a2,…,ana1,a2,…,an (1≤ai≤1091≤ai≤109) — the elements of the array.

Output

Print a single integer — the maximal number of the array's elements which after a permutation will stand on the position where a smaller element stood in the initial array.

Examples

Input
7
10 1 1 1 5 5 3
Output
4
Input
5
1 1 1 1 1
Output
0

Note

In the first sample, one of the best permutations is [1,5,5,3,10,1,1][1,5,5,3,10,1,1]. On the positions from second to fifth the elements became larger, so the answer for this permutation is 4.

In the second sample, there is no way to increase any element with a permutation, so the answer is 0.

给你一段序列,经过重新排序后,问最多有几个位置上的数比原位置上的数大了。

类似与田忌赛马,但是我并不会操作。

原理是这样的:

  假设给定的序列是  1 1 2 3  5 5 5 7

  那么,符合题意的方法是,抽出两个子序列:1 2 3 5 7 和  1 5 ;或者是  1 3 5 7 和 1 2 5 。

  即找长串,找若干条,直到所给序列中的数都被选过,或无法再选。

方法有了,但是暴力实现的话会超时或者RT,不知道怎么实现,直到发现了网友们的一个极其巧妙的解法,但是那种算法的原理不太理解。。。

 #include<cstdio>
#include<cstdlib>
#include<cstring>
#include<string>
#include<cmath>
#include<algorithm>
#include<queue>
#include<stack>
#include<deque>
#include<map>
#include<iostream>
using namespace std;
typedef long long LL;
const double pi=acos(-1.0);
const double e=exp();
const int N = ; int con[];
int num[];
bool cmp(int a,int b)
{
return a<b;
}
int main()
{
int n,i,p,j;
int flag,ans=;
scanf("%d",&n);
for(i=;i<=n;i++)
{
scanf("%d",&con[i]);
}
sort(con+,con+n+,cmp);
int head=;
for(i=;i<=n;i++) //巧妙的方法开始了
{
if(con[i]>con[head])
{
head++;
ans++;
}
}
printf("%d\n",ans);
return ;
}

最新文章

  1. THINKPHP源码学习--------验证码类
  2. mysql常用&amp;实用语句
  3. 仿照微信的效果,实现了一个支持多选、选原图和视频的图片选择器,适配了iOS6-9系统,3行代码即可集成.
  4. Why Consumer Hardware Start-ups Fail
  5. 论APP测试中黑盒测试方案的重要性?
  6. curl库 c语言的curl 编程
  7. 遍历HashMap的最佳方式
  8. Redux源码分析之bindActionCreators
  9. MYSQL数据库学习十八 数据库维护和性能提高
  10. AI matplotlib
  11. 获取当前时间并格式化,CTime类
  12. cloud-api-service和cloud-iopm-web提交merge方法
  13. Qt_qwt图形开发
  14. Linux系统下启动tomcat报错【java.util.prefs.BackingStoreException: Couldn&#39;t get file lock】的解决方法
  15. Java编程的逻辑 (45) - 神奇的堆
  16. 虚拟化(三):vsphere套件的安装注意及使用
  17. python的map函数和reduce函数(转)
  18. MVC各层应该要实现的代码
  19. android源码相关网站
  20. 【网络结构】VGG-Net论文解析

热门文章

  1. [知乎]老狼:深入PCI与PCIe之二:软件篇
  2. Oracle12c 之后的路线图
  3. [转帖] windows server 不同版本说明
  4. 反爬虫之JS反编译:PyExecJS
  5. toast components
  6. Nagios通过企业微信报警
  7. uoj318 [NOI2017]蔬菜 【贪心 + 堆 + 并查集】
  8. Idea的Maven使用
  9. Java Learning之文档注释
  10. Redis 创建多个端口 链接redis端口