cf div.2(1061)

贪心、
B. Views Matter
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

You came to the exhibition and one exhibit has drawn your attention. It consists of nn stacks of blocks,where the ii-th stack consists of aiaiblocks resting on the surface.

The height of the exhibit is equal to mm. Consequently,the number of blocks in each stack is less than or equal to mm.

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.

Input

The first line contains two integers nn and mm (1n1000001≤n≤100000, 1m1091≤m≤109) — the number of stacks and the height of the exhibit.

The second line contains nn integers a1,a2,,ana1,a2,…,an (1aim1≤ai≤m) — the number of blocks in each stack from left to right.

Output

Print exactly one integer — the maximum number of blocks that can be removed.

Examples
input
copy
5 6
3 3 3 3 3
output
copy
10
input
copy
3 5
1 2 4
output
copy
3
input
copy
5 5
2 3 1 4 4
output
copy
9
input
copy
1 1000
548
output
copy
0
input
copy
3 3
3 1 1
output
copy
1
Note

The following pictures illustrate the first example and its possible solution.

Blue cells indicate removed blocks. There are 1010 blue cells,so the answer is 1010.

分享图片

相关文章

Css3如何实现鼠标移上变长特效?(图文+视频)
css3怎么实现鼠标悬停图片时缓慢变大效果?(图文+视频)
jquery如何实现点击网页回到顶部效果?(图文+视频)
css3边框阴影效果怎么做?(图文+视频)
css怎么实现圆角边框和圆形效果?(图文+视频教程)
Css3如何实现旋转移动动画特效