Canadian Computing Competition: 2021 Stage 1, Senior #1
You need to paint a wooden fence between your house and your neighbour's house. You want to determine the area of the fence, in order to determine how much paint you will use. However, the fence is made out of
Thankfully, the fence has been constructed so that adjacent pieces of wood have the same height on the sides where they touch, which makes the fence more visually appealing.
Input Specification
The first line of the input will be a positive integer
The second line of input will contain
The third line of input will contain
Output Specification
Output the total area of the fence. If the correct answer is
Sample Input 1
3
2 3 6 2
4 1 1
Output for Sample Input 1
18.5
Explanation of Output for Sample Input 1
The fence looks like the following:
When looking from left to right, the individual areas of the pieces of wood are
Sample Input 2
4
6 4 9 7 3
5 2 4 1
Output for Sample Input 2
75
Explanation of Output for Sample Input 2
The fence looks like the following:
When looking from left to right, the individual areas of the pieces of wood are
Comments
You don't need to worry about using Python and the answer is an integer with .0 (such as 75.0) is still correct, so just use /2. On the contrary, if you use //2, the printed answer will be wrong.
Not Including the inputs, this can be done in 1 line in python
U can get away with not using the first input
I have run the 'best' Python 3 solution (ID: 4226630, Jan. 20, 2022) for sample 2 and the output is 75.0 (float), not the int (75) as shown in the sample 2 output...How come?
an int output is not required
Apparently the tests do not validate that then.
I actually found the solution and anyone who will code this in c++ will probably also need it.
Instead of printing the answer like this:
do this...
The fixed function will keep it from turning into scientific notation: 5.789E13
Also, setprecision in C++ allows you to choose how many decimal places you want in the float/double output.
I think
printf("%.1f", area);
also works :)Saved me from hours of malding o7
Dude this really helped out a lot!!
ORRRZZZZZ HOPE