Given a number $n$ and an $n\times n$ grid. Consider a connected path from the lower left corner to the upper right corner. Here, a path means a series of adjacent blocks that do not revisit any previous block. How many blocks need to be eliminated in the grid such that there is one and only one path from the lower left corner to the upper right corner?
Please note that the path can go down and go left, it does not need to be the "shortest".
For example, the following is not allowed (red for path 1, yellow for path 2, orange for common):
My guess is $1$ for $n=2$, $2$ for $n=3$, $4$ for $n=4$, and $2n-5$ for $n\ge 5$. However, I cannot prove them as a lower bound.
The Construction is as follows (for $n=2,3,4,5$)

All these paths are going up and right; maybe there are other routes possible, but I cannot prove that it is not optimal.
P.S. This bound is verified for $2\le n\le 7$ by a user on Stack Exchange. The link is here.


