A10420 | Vanya and Fence
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Vanya and his friends are walking along the fence of height $h$ and they do not want the guard to notice them. In order to achieve this the height of each of the friends should not exceed $h$ . If the height of some person is greater than $h$ he can bend down and then he surely won't be noticed by the guard. The height of the $i$ -th person is equal to $a_{i}$ .
Consider the width of the person walking as usual to be equal to $1$ , while the width of the bent person is equal to $2$ . Friends want to talk to each other while walking, so they would like to walk in a single row. What is the minimum width of the road, such that friends can walk in a row and remain unattended by the guard?
Consider the width of the person walking as usual to be equal to $1$ , while the width of the bent person is equal to $2$ . Friends want to talk to each other while walking, so they would like to walk in a single row. What is the minimum width of the road, such that friends can walk in a row and remain unattended by the guard?
输入格式
The first line of the input contains two integers $n$ and $h$ ( $1<=n<=1000$ , $1<=h<=1000$ ) — the number of friends and the height of the fence, respectively.
The second line contains $n$ integers $a_{i}$ ( $1<=a_{i}<=2h$ ), the $i$ -th of them is equal to the height of the $i$ -th person.
The second line contains $n$ integers $a_{i}$ ( $1<=a_{i}<=2h$ ), the $i$ -th of them is equal to the height of the $i$ -th person.
输出格式
Print a single integer — the minimum possible valid width of the road.
输入输出样例
输入 #1
3 7 4 5 14
输出 #1
4
输入 #2
6 1 1 1 1 1 1 1
输出 #2
6
输入 #3
6 5 7 6 8 9 10 5
输出 #3
11
In the first sample, only person number $3$ must bend down, so the required width is equal to $1+1+2=4$ .
In the second sample, all friends are short enough and no one has to bend, so the width $1+1+1+1+1+1=6$ is enough.
In the third sample, all the persons have to bend, except the last one. The required minimum width of the road is equal to $2+2+2+2+2+1=11$ .
In the second sample, all friends are short enough and no one has to bend, so the width $1+1+1+1+1+1=6$ is enough.
In the third sample, all the persons have to bend, except the last one. The required minimum width of the road is equal to $2+2+2+2+2+1=11$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted