forked from sureshmangs/Code
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path677A - Vanya and Fence.cpp
62 lines (45 loc) · 1.82 KB
/
677A - Vanya and Fence.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/*
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 ai.
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?
Input
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 ai (1?=?ai?=?2h), the i-th of them is equal to the height of the i-th person.
Output
Print a single integer — the minimum possible valid width of the road.
Examples
inputCopy
3 7
4 5 14
outputCopy
4
inputCopy
6 1
1 1 1 1 1 1
outputCopy
6
inputCopy
6 5
7 6 8 9 10 5
outputCopy
11
Note
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
*/
#include<bits/stdc++.h>
using namespace std;
int main(){
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int n, h;
cin >> n >> h;
int width = n;
for (int i = 0; i < n; i++) {
int a;
cin >> a;
if (a > h) width++;
}
cout << width;
return 0;
}