[Solution] Story of Seasons Round F 2022 - Kick Start 2022 Solution
Problem
You are a super farmer with some vegetable seeds and an infinitely large farm. In fact, not only are you a farmer, but you are also secretly a super programmer! As a super programmer, you hope to maximize the profit of your farming using your programming skills.
Since your daily energy is limited, you can plant at most seeds each day. In the beginning, you have kinds of vegetable seeds. The number of seeds of the -th kind of vegetable is , and each seed of this kind needs days to mature from the day it is planted. Once it matures, you can sell it for dollars. Assume that no energy or time is required for harvesting and selling vegetables. Also, your farm is infinitely large so the growing vegetables do not crowd out each other.
Notice that although the area of your farm is infinite, the number of days that you can plant seeds is limited. The warm season only lasts days, and after that, the harsh winter comes. Any vegetable that has not matured yet will die immediately and cannot be turned into profit. The remaining seeds that were not planted cannot be turned into profit either.
As a super farmer and a super programmer, you want to come up with a perfect planting plan that will maximize your profit. Find the total amount of profit you will earn.
Input
The first line of the input gives the number of test cases, . test cases follow.
The first line of each test case contains three integers , , and : the number of days of the warm season, the number of kinds of vegetable seeds you have to start with, and the maximum number of seeds you can plant each day, respectively.
The next lines describe the seeds. The -th line contains three integers , , and : the quantity of this kind of seed, the number of days it needs to mature, and the value of each matured plant, respectively.
Output
For each test case, output one line containing Case #:
, where is the test case number (starting from 1) and is the maximum amount of money you can earn by optimizing your farming plan.
Limits
Memory limit: 1 GB.
.
, for all .
, for all .
Test Set 1
Time limit: 20 seconds.
.
.
.
, for all .
Test Set 2
Time limit: 60 seconds.
.
.
.
, for all .
Test Set 3
Time limit: 60 seconds.
.
.
.
, for all .
.In Sample Case #1, there are
days, kinds of vegetables and you can plant at most seed each day. Supposing the kinds of vegetables are spinach, pumpkin, carrot and cabbage, we have that
- Spinach needs days to grow, each matured one is worth dollars, and you start with spinach seed.
- Pumpkin needs days to grow, each matured one is worth dollars, and you start with pumpkin seed.
- Carrot needs days to grow, each matured one is worth dollars, and you start with carrot seed.
- Cabbage needs days to grow, each matured one is worth dollars, and you start with cabbage seed.
The maximum profit you can make is dollars. One of the schedules you can use is:
- Day 1: plant carrot
- Day 2: plant pumpkin
- Day 3: plant spinach
- Day 4: plant cabbage
- Day 5: do nothing
And with this schedule, the vegetables will mature and turn into profit as following days:
- Day 1: nothing harvested
- Day 2: nothing harvested
- Day 3: nothing harvested
- Day 4: nothing harvested
- Day 5: spinach, pumpkin and carrot harvested, you earn dollars
Note that the cabbage is supposed to mature on day , but it will actually die because of the winter.
No comments:
Post a Comment