#P15688. [ICPC 2023 Jakarta R] Grid Game 2

[ICPC 2023 Jakarta R] Grid Game 2

题目描述

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

Each cell can have a colour of either black or white. Initially, there are exactly N N black cells (numbered from 1 1 to N N ). Black cell i i 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.

:::align{center} :::

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 N N ( 1N200000 1 \le N \le 200\,000 ).

Each of the next N N lines consists of two integers Ri R_i Ci C_i ( 1Ri,Ci109) 1 \leq R_i, C_i \leq 10^9) . For 1i<jN 1 \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.

2
2 3
2 4
FIRST
1
2 2
SECOND
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
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.

:::align{center} :::

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.