Editorial for Baltic OI '18 P3 - Worm Worries
Submitting an official solution before solving the problem yourself is a bannable offence.
This problem is really three problems in one, for the cases of one, two and three dimensions. Most solutions work across any number of dimensions, but to get an optimal number of queries (for test groups 2, 4 and 6), the three cases required separate solutions.
1 dimension
We can first try something like a binary search. Let's say we have a grid of size
However, this uses
Say we want to find a local maximum in the interval
To find the right
This solution uses
2 dimensions
We can reuse some of the ideas of the binary search from the one-dimension case. Let us ask about the values of a line that cuts the rectangle in two. Consider the maximum of the values, and also query the two values to the left and right of this maximum (assuming the cut is vertical). If they are both less or equal to the maximum value, our point is a valid answer. Otherwise, we can recurse on a side where it increases. Intuitively, if we then continued walking to larger and larger values, we could never again cross the cutting line, because the value we walked to was larger than every value on it. There are some subtleties to this, where we have to make sure to recurse on the side that has the previously found maximal query value if that value is larger than the maximum value on the cutting line – otherwise, a local maximum that we found in a subrectangle may not be a local maximum of a full rectangle. Correctly implemented, though, this solves subtasks 3 and 4, assuming you alternate vertical and horizontal splits. It can also be generalized to 1 and 3 dimensions, solving subtasks 1 and 5.
3 dimensions
One naive idea is to query points at random, and then print the best one, i.e. the one with the highest humidity. Another naive idea is to start from a random point, query adjacent points, and move in the direction of increasing humidity until you find a local maximum.
Neither of these ideas work very well in the worst case, but they can be combined into a solution: First query
Why does this work? Suppose in the first stage you find a point among the
The probability of not finding one of these points is at most:
For group 6, this gives a probability of failure less than
Fun facts about this problem
- The grader for this task was 900 lines long, and implemented 14 different strategies for (on-demand per query) test data generation. This included random test data, space-filling curves, spirals, random line segment paths with slopes leading up to them, and fun 1d functions like randomly rescaled
and sawtooth functions. - We had vague plans on extending the task to 4d, but scrapped them. If anyone wants code for random space-filling curves in 4d, just ask.
- Apparently this problem has been fairly well studied by computer scientists, with regards to upper and lower bounds. See for instance:
Comments