Editorial for New Year's '18 P8 - Snowy Streets
Submitting an official solution before solving the problem yourself is a bannable offence.
Author:
For the first subtask, each square has two states: either it can be visited from or it can't. Also, a square will only change states at most once. Then we can DFS to change the states whenever a square becomes blocked.
Time Complexity:
For the second subtask, we use the same idea as the first subtask. The only difference is that we need to handle the type 1 operations better. To do this, keep an RMQ segment tree on each row of the grid and lazily update it for each type 1 operation. Then, find the maximum to check whether or not any of the squares in a row became blocked. If so, then you update the blocked squares with so that they never show up again.
Time Complexity:
For the final subtask, keep track of when a square becomes blocked and call this the square's value. The type 2 operations will be answered offline. Call the distance between two squares the minimum value on a path from one to the other. For each square on the middle column, determine the maximum distance from it to every other square. Then, split the grid into two halves along that column. For each of these two new grids, repeat the process. This entire process takes . With these computed numbers, the maximum distance (which can be used to easily determine the answer) for any type 2 operation can be found in . This is done by finding a portion of the grid where one of the squares in the query is on one half of the grid and the other square is on the other half. Then, the computed distances to those two squares from each square of the corresponding middle column can be merged.
Time Complexity:
Comments
There is also an easy online solution to type-2 queries with bitset ( makes it even easier).
Could you plz give more details on the solution for subtask 1? I'm not sure how to dfs so that the overall complexity is .
I understand the last solution tho...Thanks for proposing the problem.
nvm, I get it now.
The test cases of subtask 2 is too weak btw. I passed with an solution. https://dmoj.ca/submission/733056
EDIT: Nevermind, this doesn't work, but it's still an interesting algorithm nonetheless
There is an alternate, simpler solution to this problem
Keep a 2d array to represent the amount of snow
For type 1 operations, simply brute force
For type 2 operations, keep 2 stacks for DFS and a 2d visited array
Push onto one stack when moving down, and the other stack when moving to the right
Here a wall is defined as the boundaries of the rectangle (a,b) (c,d), where (a,b) is the source and (c,d) is the destination
When you run into a wall or a visited node while moving right, clear the "right" stack
When you run into a wall or a visited node while moving down, clear the "down" stack
When popping, pop from the stack with the most recently pushed element
If one stack is empty, obviously don't pop from it
If both stacks become empty without finding a valid path, there is no path
Calculating the time complexity is left to the reader as an excercise
This solution is incorrect and runs in in worst case (your implementation of it runs in iirc). Since this contest is non-systested, your in-contest submission will not be affected, but I'll be adding new test cases to kill DFS brute-forces soon.
Sorry if I trolled you, you see, I've been a problemsetter before and I know how annoying those pesky trolls can be.
But I think the complexity of my implementation should be for type 1
As for type 2, I'm not very sure, but I think it is not
Querying one square takes time
Obviously, it will never visit every square in the rectangle, but I don't know how to calculate how many squares would be visited
Okay, I've taken a closer look at your solution and it's worst case (there are situations where your code visits almost every square). I've also uploaded a few cases to each subtask which your solution both TLEs and WAs on.
Well, good game I guess. You definitely have the better algorithm.
I can understand why it TLEs, but do you mind enlightening me as to why it WAs?
This solution only passes because of weak test data. As the contest was not systested, we could not upload a countercase.