3521.More Reclamation

Time Limit: 1s Memory Limit: 256MB

In a far away land, there are two cities near a river. One day, the cities decide that they have too little space and would like to reclaim some of the river area into land.The river area can be represented by a grid with r rows and exactly two columns - each cell represents a rectangular area. The rows are numbered 1 through r from top to bottom, while the columns are numbered 1 and 2.Initially, all of the cells are occupied by the river. The plan is to turn some of those cells into land one by one, with the cities alternately choosing a cell to reclaim, and continuing until no more cells can be reclaimed.However, the river is also used as a major trade route. The cities need to make sure that ships will still be able to sail from one end of the river to the other. More formally, if a cell (r,c) has been reclaimed, it is not allowed to reclaim any of the cells (r-1,3-c), (r,3-c), or (r+1,3-c).The cities are not on friendly terms, and each city wants to be the last city to reclaim a cell (they don't care about how many cells they reclaim, just who reclaims a cell last). The cities have already reclaimed n cells. Your job is to determine which city will be the last to reclaim a cell, assuming both choose cells optimally from current moment.

Input Format(From the terminal/stdin)

Input The first line consists of two integers r and n (1 \le r \le 100,0 \le n \le r). Then n lines follow, describing the cells that were already reclaimed. Each line consists of two integers: ri and ci (1 \le ri \le r,1 \le ci \le 2), which represent the cell located at row ri and column ci. All of the lines describing the cells will be distinct, and the reclaimed cells will not violate the constraints above.

Output Format(To the terminal/stdout)

Output Output "WIN" if the city whose turn it is to choose a cell can guarantee that they will be the last to choose a cell. Otherwise print "LOSE".

Sample Input 1

Copy
3 1
1 1
 · \n
 · \n

Sample Output 1

Copy
WIN
   \n

Sample Input 2

Copy
12 2
4 1
8 1
  · \n
 · \n
 · \n

Sample Output 2

Copy
WIN
   \n

Sample Input 3

Copy
1 1
1 2
 · \n
 · \n

Sample Output 3

Copy
LOSE
    \n

Hints

In the first example, there are 3 possible cells for the first city to reclaim: (2,1), (3,1), or (3,2). The first two possibilities both lose, as they leave exactly one cell for the other city. 3521_1.png However, reclaiming the cell at (3,2) leaves no more cells that can be reclaimed, and therefore the first city wins. 3521_2.png In the third example, there are no cells that can be reclaimed.

Submit

请先 登录

© 2025 FAQs