CF335C.More Reclamation

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

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 rr rows and exactly two columns — each cell represents a rectangular area. The rows are numbered 11 through rr from top to bottom, while the columns are numbered 11 and 22 .

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)(r,c) has been reclaimed, it is not allowed to reclaim any of the cells (r1,3c)(r-1,3-c) , (r,3c)(r,3-c) , or (r+1,3c)(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 nn cells. Your job is to determine which city will be the last to reclaim a cell, assuming both choose cells optimally from current moment.

输入格式

The first line consists of two integers rr and nn ( 1<=r<=100,0<=n<=r1<=r<=100,0<=n<=r ). Then nn lines follow, describing the cells that were already reclaimed. Each line consists of two integers: rir_{i} and cic_{i} ( 1<=ri<=r,1<=ci<=21<=r_{i}<=r,1<=c_{i}<=2 ), which represent the cell located at row rir_{i} and column cic_{i} . All of the lines describing the cells will be distinct, and the reclaimed cells will not violate the constraints above.

输出格式

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".

输入输出样例

  • 输入#1

    3 1
    1 1
    

    输出#1

    WIN
    
  • 输入#2

    12 2
    4 1
    8 1
    

    输出#2

    WIN
    
  • 输入#3

    1 1
    1 2
    

    输出#3

    LOSE
    

说明/提示

In the first example, there are 3 possible cells for the first city to reclaim: (2,1)(2,1) , (3,1)(3,1) , or (3,2)(3,2) . The first two possibilities both lose, as they leave exactly one cell for the other city.

However, reclaiming the cell at (3,2)(3,2) leaves no more cells that can be reclaimed, and therefore the first city wins.

In the third example, there are no cells that can be reclaimed.

首页