Canadian Computing Competition: 2012 Stage 1, Junior #2
A fish-finder is a device used by anglers to find fish in a lake. If the fish-finder finds a fish, it will sound an alarm. It uses depth readings to determine whether to sound an alarm. For our purposes, the fish-finder will decide that a fish is swimming past if:
- there are four consecutive depth readings which form a strictly increasing sequence (such as 3 4 7 9) (which we will call "Fish Rising") or
- there are four consecutive depth readings which form a strictly decreasing sequence (such as 9 6 5 2) (which we will call "Fish Diving"), or
- there are four consecutive depth readings which are identical (which we will call "Constant Depth").
All other readings will be considered random noise or debris, which we will call "No Fish". Your task is to read a sequence of depth readings and determine if the alarm will sound.
Input Specification
The input will be four positive integers, representing the depth readings. Each integer will be on its own line of input.
Output Specification
The output is one of four possibilities. If the depth readings are increasing, then the output should be Fish Rising
. If the depth readings are decreasing, then the output should be Fish Diving
. If the depth readings are identical, then the output should be Fish At Constant Depth
. Otherwise, the output should be No Fish
.
Sample Input 1
30
10
20
20
Output for Sample Input 1
No Fish
Sample Input 2
1
10
12
13
Output for Sample Input 2
Fish Rising
Comments
remember you should not output"constant depth", it actually requires you to output "Fish At Constant Depth"
Thank you sooooo much
Thank you so much you just saved me from another hour of confusion <3
go fish
https://cardgames.io/gofish/images/gofish-logo.png
This comment is hidden due to too much negative feedback. Click here to view it.
This comment is hidden due to too much negative feedback. Click here to view it.
This comment is hidden due to too much negative feedback. Click here to view it.
Thanks for the help
This comment is hidden due to too much negative feedback. Click here to view it.
The first combination is simply that the first number must be strictly smaller than the second number, the second number strictly smaller than the third number, and the third number strictly smaller than the fourth number.
Keep in mind that there are 3 more conditions which you need to watch out for.
In the description of the question it says "Constant Depth" is one of the alarm triggers. In the output specification it says "Fish At Constant Depth" which is the actual required output. The description should be changed to be consistent with the actual output specification.
this was really helpful cus i had it at "Constant Depth" instead of "Fish At Constant Depth" and I didnt know what i didnt wrong untill i read this thanks
I like how the most important comment is at the bottom.
At least someone else commented it and it's at the top now.