atcoder#ABC135C. [ABC135C] City Savers
[ABC135C] City Savers
Score : points
Problem Statement
There are towns. The -th town is being attacked by monsters.
We have heroes. The -th hero can defeat monsters attacking the -th or -th town, for a total of at most monsters.
What is the maximum total number of monsters the heroes can cooperate to defeat?
Constraints
- All values in input are integers.
Input
Input is given from Standard Input in the following format:
Output
Print the maximum total number of monsters the heroes can defeat.
2
3 5 2
4 5
9
If the heroes choose the monsters to defeat as follows, they can defeat nine monsters in total, which is the maximum result.
- The first hero defeats two monsters attacking the first town and two monsters attacking the second town.
- The second hero defeats three monsters attacking the second town and two monsters attacking the third town.
3
5 6 3 8
5 100 8
22
2
100 1 1
1 100
3