#NOI20221B. 「NOI2022」移除石子 (Removing Stones)
「NOI2022」移除石子 (Removing Stones)
Description
You're playing a little game called Removing Stones.
There are pile of stones in a line, with stones in the th pile. Your task is to remove all stones by following operations:
-
Operation one: Choose one pile of stone, and remove at least stones from it.
-
Operation two: Choose an interval of numbers satisfying , and remove exactly stone from each of the piles in this range.
You can perform these operations any number of times and in any order, until you can no longer perform any operation. If you're able to remove all stones in the end you win.
You may have already started calculating problems, such as the count of distinct winning operation sequences. However in actual play you always find yourself losing. So you decided to have a trick up sleeve: at the beginning of the game, you'll secretly keep stones in hour hand. Before all the operations you are able to and must put these stones into one or several piles. You expect this will boost your win rate; although you know this might make you lose games you could have won.
Now you could freely choose a starting position of the game. Specifically, for each you could choose any integer in range . You want to calculate in how many starting positions you have at least one winning plan. Since the answer is large, you only need to output it modulo . Two starting positions are distinct if and only if there exists at least one so that of the two are not equal. Note that the starting position refers to the position before you put in stones.
Input Format
Read from file stone.in
.
There are multiple test cases in each test.
The first line of input contains an integer indicating the number of test cases. Following are the test cases in order.
For each test case, the first line contains two integer , each indicating the number of stone piles and the number of stones to be added. The following lines each consists of two integer representing the range of initial stone count of each pile.
Output Format
Output to file stone.out
.
For each test case, output a line of one integer, indicating the result of winnable position count modulo .
1
4 1
0 1
0 1
0 1
0 1
14
Sample 2
See files [stone2.in](file://stone2.in) and [stone2.ans](file://stone2.ans) in the attachment.
Sample 3
See files [stone3.in](file://stone3.in) and [stone3.ans](file://stone3.ans) in the attachment.
Sample 4
See files [stone4.in](file://stone4.in) and [stone4.ans](file://stone4.ans) in the attachment.
Constraints and Hint
For of the tests, it is guaranteed that , , , .
Test Number | Special Case | ||
---|---|---|---|
None | |||
None |