Canadian Computing Competition: 2024 Stage 1, Junior #2
Dusa eats Yobis, but only Yobis of a certain size.
If Dusa encounters a Yobi that is smaller than itself, it eats the Yobi, and absorbs its size.
For example, if Dusa is of size and it encounters a Yobi of size
, Dusa eats the Yobi and
expands to size
.
If Dusa encounters a Yobi that is the same size as itself or larger, Dusa runs away without eating the Yobi.
Dusa is currently facing a line of Yobis and will encounter them in order. Dusa is guaranteed to eventually encounter a Yobi that causes it to run away. Your job is to determine Dusa's size when this happens.
Input Specification
The first line of input contains a positive integer, , representing Dusa's starting size.
The remaining lines of input contain positive integers representing the sizes of the Yobis in order.
Output Specification
Output the positive integer, , which is Dusa's size when it eventually runs away.
Sample Input 1
5
3
2
9
20
22
14
Output for Sample Input 1
19
Explanation of Output for Sample Input 1
Dusa is large enough to eat the Yobi of size . This brings Dusa's size to
. Dusa is large
enough to eat the Yobi of size 2. This brings Dusa's size to 10. Dusa is large enough to eat
the Yobi of size 9. This brings Dusa's size to 19. The Yobi of size 20 causes Dusa to run away.
Sample Input 2
10
10
3
5
13
Output for Sample Input 2
10
Explanation of Output for Sample Input 2
The Yobi of size causes Dusa to run away, leaving its size unchanged.
Comments
i got this wrong because i used short type for c++ instead of int im just happy i dont have to deal with short type and int types in python
Always use int in C++, and maybe add #define int long long at near the top of your code.
This comment is hidden due to too much negative feedback. Show it anyway.
how many inputs do we need
use a while true loop bc we don't know when duza runs away
while dusa can eat the yobis
This comment is hidden due to too much negative feedback. Show it anyway.
This comment is hidden due to too much negative feedback. Show it anyway.
No, because Dusa is guaranteed to eventually encounter a Yobi that causes it to run away