US Open 2022 Silver Contest Unofficial Editorial

Revision en2, by Cereal2, 2022-04-01 03:41:40

US Open 2022 Silver Contest Unofficial Editorial

Hi everyone! TL;DR

Disclaimer

You may know me as the problem author for the Sleeping in Class (February 2022 Bronze Contest Problem 1) and Counting Liars (US Open 2022 Bronze Contest Problem 2) problems. You may also know me as a content author for USACO Guide. I am writing this blog to hopefully be able to help you understand how someone who got a perfect 1000 on this contest solved the problems; this is simply to help you understand the problems from an alternative perspective. Please read the disclaimer above for more information.

Problem 1: Visits

After reading the problem for a while, it can be observed that this problem is a graph problem. The problem essentially asks for the maximum sum of edge costs that has no cycles. This can be thought of as the maximum spanning tree of the graph. We can draw a directed edge between $$$i$$$ and $$$p_i$$$. Although we can run Prim's or Kruskals algorithm to find the maximum spanning tree, we can also think of this as a strongly connected components problem (SCC). Specifically, for each SCC, we can add the edge weight cost of each node in the SCC if there is exactly one node in the SCC. Otherwise, we should find the total cost of edge weights in that SCC and subtract the edge with the minimum edge cost. This can be shown to be the maximum cost for a given SCC since no cycles are included and the sum of the edge weights in the SCC is as large as possible. In terms of finding the SCCs efficiently, I used Kosajaru's algorithm to find the SCCs in $$$O(n + m)$$$ time. My C++ code can be found below:

Code

As always, please DM me if you have anything doesn't make sense, or you have any additional questions regarding my editorial/code.

Problem 2: Subset Equality

Note that this solution likely isn't the intended solution. However, it still works :).

Let's define a "character pair" $$$(a, b)$$$ as the number of times character $$$a$$$ comes before $$$b$$$. Note that characters $$$a$$$ and $$$b$$$ can be any letter between 'a' to 'r'. If two strings were equal after only keeping a certain substring of characters $$$q$$$, then the character pairs for the first string $$$s$$$ must be the same as the character pairs for the second string $$$t$$$ for all character pairs in substring $$$q$$$. We can precompute the number of character pairs $$$(a, b)$$$ for all characters from 'a' tor 'r' by maintaining a running total of all values of $$$a$$$ and fixing $$$b$$$. In other words, suppose that the number of occurrences of $$$a$$$ to the left of the fixed $$$b$$$ is $$$cnt_a$$$; we can add $$$cnt_a$$$ to $$$pairs[a][b]$$$, where $$$pairs[a][b]$$$ represents the number of character pairs for characters $$$a$$$ and $$$b$$$. We can iterate over all characters in substring $$$q$$$ (the provided query) and check if the $$$pairs[a][b]$$$ are consistent for both strings $$$s$$$ and $$$t$$$. This can be done in approximately $$$O(18^2 \times N)$$$ time. My C++ code can be found below:

Code

As always, please DM me if you have anything doesn't make sense, or you have any additional questions regarding my editorial/code.

Problem 3: COW Operations

After carefully writing out different input strings, we can observe that we can reduce a given input string down to 'C' if we get a resulting string of 'O', 'W', 'CO', 'CW', or 'CC', since there is no way to change these to a single 'C'. However, we can also notice that we can turn an 'OW' into a 'C', so we can consider each 'OW' as a 'C'. Additionally, notice that the configuration of the 'O's 'W's and 'C's don't matter as we can transform them down to the smaller substrings. All of these observations allows us to check if a string can be reduced down to a 'C' by counting the number of 'C's, 'OW's, and the remaining number of characters after all 'C's and 'OW's (or 'C') are considered separately. The following two conditions must hold true for a given string to be able to be reduced down to a 'C':

  • The number of 'C's must be odd, since we can delete all but one 'C' if we decide to delete adjacent characters.
  • The number of non 'C' or 'OW' characters must be even so that we can delete all of them by deleting adjacent characters.

Note that we assumed that the configuration of characters allows us to delete adjacent characters.

Given that, we can determine whether a given string can be reduced down to 'C' using only the number of 'C's, 'O's, and 'W's, we can answer each query by using prefix sums to count the frequency of each character between $$$l$$$ and $$$r$$$. My C++ code can be found below:

Code

As always, please DM me if you have anything doesn't make sense, or you have any additional questions regarding my editorial/code.

Closing Thoughts

I hope you found my editorial helpful. I unfortunately don't qualify to write the Gold editorial, since I did significantly worse on that contest. As for everyone else, good luck, have fun and let me know if you have any questions by DMing me on CF.

PS
Tags silver, usaco, editorial

History

 
 
 
 
Revisions
 
 
  Rev. Lang. By When Δ Comment
en2 English Cereal2 2022-04-01 03:41:40 2 (published)
en1 English Cereal2 2022-04-01 03:40:43 9421 Initial revision (saved to drafts)