CF1906G.Grid Game 2

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

You are playing "Grid Game 2" with your friend. There is a grid with 10910^9 rows (numbered from 11 to 10910^9 ) and 10910^9 columns (numbered from 11 to 10910^9 ). The cell at row rr and column cc is denoted as (r,c)(r, c) .

Each cell can have a colour of either black or white. Initially, there are exactly NN black cells (numbered from 11 to NN ). Black cell ii is located at (Ri,Ci)(R_i, C_i) . The rest of the cells are white.

You and your friend will alternately take turn playing on this grid, and you are playing in the first turn. In one turn, a player will choose a black cell (r,c)(r, c) , then toggle cells (rx,cy)(r - x, c - y) for all 0x,y<min(r,c)0 \leq x, y < \min(r, c) . If a cell is toggled, then the cell becomes black if it was a white cell, and the cell becomes white if it was a black cell.

For example, the following illustration shows how the grid changes after a player chooses a black cell (5,4)(5, 4) in their turn.

A player who is unable to play on their turn, i.e. no remaining black cells, loses the game, and the opposing player wins the game. If you and your friend are playing optimally, determine who will win the game.

输入格式

The first line consists of an integer NN ( 1N2000001 \le N \le 200\,000 ).

Each of the next NN lines consists of two integers RiR_i CiC_i ( 1Ri,Ci109)1 \leq R_i, C_i \leq 10^9) . For 1i<jN1 \leq i < j \leq N , (Ri,Ci)(Rj,Cj)(R_i, C_i) \neq (R_j, C_j) .

输出格式

Output FIRST if you will win the game, or SECOND otherwise.

输入输出样例

  • 输入#1

    2
    2 3
    2 4

    输出#1

    FIRST
  • 输入#2

    1
    2 2

    输出#2

    SECOND
  • 输入#3

    13
    1 1
    1 4
    1 5
    2 1
    2 4
    2 5
    4 1
    4 2
    4 4
    5 1
    5 2
    5 4
    5 5

    输出#3

    SECOND

说明/提示

Explanation for the sample input/output #1

You can start your move by choosing (2,4)(2, 4) , whose effect was demonstrated in the following illustration.

The remaining black cells are (1,3)(1, 3) and (1,4)(1, 4) , each of which will only toggle itself when chosen. Whichever your friend chooses on the next move, the you can choose the remaining black cell.

Explanation for the sample input/output #2

You have only one cell to choose, and will toggle cells (1,1)(1, 1) , (1,2)(1, 2) , (2,1)(2, 1) , and (2,2)(2, 2) . Your friend and you will alternately choose the remaining black cells with your friend choosing the last black cell.

首页