I was trying to solve jelly from last year(and this year) practice contest. First 4 subtasks are very easy but i don't have any idea about the last 2 subtasks. Can anyone share their solution.
Thank you in advance.
Current Progress: (if it matters)
# | User | Rating |
---|---|---|
1 | tourist | 4009 |
2 | jiangly | 3823 |
3 | Benq | 3738 |
4 | Radewoosh | 3633 |
5 | jqdai0815 | 3620 |
6 | orzdevinwang | 3529 |
7 | ecnerwala | 3446 |
8 | Um_nik | 3396 |
9 | ksun48 | 3390 |
10 | gamegame | 3386 |
# | User | Contrib. |
---|---|---|
1 | cry | 167 |
2 | Um_nik | 163 |
3 | maomao90 | 162 |
3 | atcoder_official | 162 |
5 | adamant | 159 |
6 | -is-this-fft- | 158 |
7 | awoo | 157 |
8 | TheScrasse | 154 |
9 | Dominater069 | 153 |
9 | nor | 153 |
I was trying to solve jelly from last year(and this year) practice contest. First 4 subtasks are very easy but i don't have any idea about the last 2 subtasks. Can anyone share their solution.
Thank you in advance.
I was hoping that there's a greedy for the full solution since constraints seemed too big for dp. But looking at submissions from oj.uz there seems to be a dp solution. On greedy, i tried to always use the shop with highest money and failed.
Name |
---|
Have you solved the problem by now? If not, here is a hint.
Let's sort the jelly flavors such that their $$$a$$$ values are non-decreasing. We will call a particular way of buying the flavors at stores A and B a solution (each flavor is either bought at store A, store B, or not bought at all). A maximal solution is a solution for which the number of bought flavors is maximal. For a particular solution, let $$$j$$$ be the largest index of all flavors that were bought at store A.
You can now prove the following statement: There always exists a maximal solution such that all flavors with an index $$$<j$$$ are bought at one of the two stores.
Proof: Consider any maximal solution $$$S$$$. If it satisfies the said property, we are done. If it doesn't, we will construct a new maximal solution $$$T$$$ that satisfies the property:
- We buy all flavors that are bought at store B in solution $$$S$$$ also at store B.
- We buy the first $$$u$$$ flavors with the smallest indices (that are not already bought at store B) at store A, where $$$u$$$ is the amount of flavor bought at store $$$A$$$ in solution $$$S$$$. Because all flavors bought at store A have the smallest indices available, there will be no flavor with index $$$<j$$$ that is not bought. Since the flavors are sorted such that their $$$a$$$ values are non-decreasing, solution $$$T$$$ will spend not more money at store A than solution $$$S$$$ does, and therefore $$$T$$$ is a valid solution. The amount of flavors bought is the same for $$$S$$$ and $$$T$$$ and thus $$$T$$$ is also a maximal solution.
$$$T$$$ therefore satisfies the desired property.
Knowing that a maximal solution with this property always exists, we can design a DP-algorithm for solving the problem. Using DP, we can calculate two arrays of values:
- $$$DP_1[i][a]$$$: The minimal amount of dollars $$$b$$$ for which you can buy all flavors with an index $$$<i$$$ using at most $$$a$$$ dollars at store A and at most $$$b$$$ dollars at store B
- $$$DP_2[i][b]$$$: The maximal amount of distinct flavors with an index $$$\geq i$$$ that you can buy using at most $$$b$$$ dollars at store B The recursive formula for these values should be easy to derive. Finally, the answer will be $$$\max\limits_{0\leq i\leq n}\max\limits_{0\leq a\leq x}(i + DP_2[i][y - DP_1[i][a]])$$$.
I wrote a blog about that problem months ago: https://mirror.codeforces.com/blog/entry/82625
Hope it helps ;)