CF1061B.Views Matter
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
You came to the exhibition and one exhibit has drawn your attention. It consists of n stacks of blocks, where the i -th stack consists of ai blocks resting on the surface.
The height of the exhibit is equal to m . Consequently, the number of blocks in each stack is less than or equal to m .
There is a camera on the ceiling that sees the top view of the blocks and a camera on the right wall that sees the side view of the blocks.
Find the maximum number of blocks you can remove such that the views for both the cameras would not change.
Note, that while originally all blocks are stacked on the floor, it is not required for them to stay connected to the floor after some blocks are removed. There is no gravity in the whole exhibition, so no block would fall down, even if the block underneath is removed. It is not allowed to move blocks by hand either.
输入格式
The first line contains two integers n and m ( 1≤n≤100000 , 1≤m≤109 ) — the number of stacks and the height of the exhibit.
The second line contains n integers a1,a2,…,an ( 1≤ai≤m ) — the number of blocks in each stack from left to right.
输出格式
Print exactly one integer — the maximum number of blocks that can be removed.
输入输出样例
输入#1
5 6 3 3 3 3 3
输出#1
10
输入#2
3 5 1 2 4
输出#2
3
输入#3
5 5 2 3 1 4 4
输出#3
9
输入#4
1 1000 548
输出#4
0
输入#5
3 3 3 1 1
输出#5
1
说明/提示
The following pictures illustrate the first example and its possible solution.
Blue cells indicate removed blocks. There are 10 blue cells, so the answer is 10 .