Due to the increasing pandemic situation, the government decides to enforce traffic ban by building straight lines (infinite at both directions) as "walls", with no two of them are parallel, and no three of them are concurrent. The set of these walls is denoted as . For each wall in , the government paints one of its sides in blue, and the other side in green. By such, for any two walls, their intersection is divided into four corners: a mono-color corner such that both walls are blue, a mono-color corner such that both walls are green, and two duel-color corners such that the walls are in different colors. To make sure there are paths for emergency, the government opens a door on each intersection of walls so that people can travel from a duel-color corner to the other duel-color corner. These doors are the only ways for people to cross a wall.
Given , let be the largest positive integer such that, no matter how the government paints the walls, we can place people on the plane so that no two of them can ever meet each other. For each , find all possible values of .
, 2020
Solution
For all , the only possible value of is .
By mathematical induction, it is easy to see that divides the plane into regions. We convert this problem into a graph , where each vertex corresponds to a region, and two regions that can be connected by a door are joined by an edge.
First, we prove that . Note that the number of intersection points of the walls must be , hence the number of edges of must be . Let us first remove all edges from , and then add them back one by one; each time we add back an edge, the number of connected regions in decreases by at most one, so the final number of connected regions of is at least . If we place one person in each connected region, then clearly these people can never meet, hence .
Next, we prove that, regardless of what is, the following coloring method forces us to place at most people:
- First, choose a rectangular coordinate system such that no wall is oriented north-south or east-west;
- Paint the west side of each wall green, and the east side blue.
Furthermore, we compute for each wall the eastward value = "the number of walls to the east of which this region lies". Clearly ranges between 0 and , and for each value in this range there is exactly one region with "no wall to its north" corresponding to that value. Therefore, if we can prove:
**Claim. All regions with the same value are connected to each other.**
then we will have proven that at most people can be placed, and thus the original proposition is established.
Proof of Claim.
Fix , and place a person in a region with . Let this person move toward the north. Note that every bounded region is a convex polygon, and its northernmost edge must be an intersection point, which must have a door, so this person must eventually reach a region with no wall to its north. Furthermore, note that when a person passes through a door and arrives at a new region, exactly one wall switches from its east side to its west side, and exactly one wall switches from its west side to its east side, hence the value of all regions along this person's path are equal. Therefore, all regions with are connected to the region with no wall to its north and , which completes the proof.