#P1558A. Charmed by the Game
Charmed by the Game
No submission language available for this problem.
Description
Alice and Borys are playing tennis.
A tennis match consists of games. In each game, one of the players is serving and the other one is receiving.
Players serve in turns: after a game where Alice is serving follows a game where Borys is serving, and vice versa.
Each game ends with a victory of one of the players. If a game is won by the serving player, it's said that this player holds serve. If a game is won by the receiving player, it's said that this player breaks serve.
It is known that Alice won games and Borys won games during the match. It is unknown who served first and who won which games.
Find all values of such that exactly breaks could happen during the match between Alice and Borys in total.
Each test contains multiple test cases. The first line contains the number of test cases (). Description of the test cases follows.
Each of the next lines describes one test case and contains two integers and (; ) — the number of games won by Alice and Borys, respectively.
It is guaranteed that the sum of over all test cases does not exceed .
For each test case print two lines.
In the first line, print a single integer () — the number of values of such that exactly breaks could happen during the match.
In the second line, print distinct integers () — the sought values of in increasing order.
Input
Each test contains multiple test cases. The first line contains the number of test cases (). Description of the test cases follows.
Each of the next lines describes one test case and contains two integers and (; ) — the number of games won by Alice and Borys, respectively.
It is guaranteed that the sum of over all test cases does not exceed .
Output
For each test case print two lines.
In the first line, print a single integer () — the number of values of such that exactly breaks could happen during the match.
In the second line, print distinct integers () — the sought values of in increasing order.
Samples
Note
In the first test case, any number of breaks between and could happen during the match:
- Alice holds serve, Borys holds serve, Alice holds serve: breaks;
- Borys holds serve, Alice holds serve, Alice breaks serve: break;
- Borys breaks serve, Alice breaks serve, Alice holds serve: breaks;
- Alice breaks serve, Borys breaks serve, Alice breaks serve: breaks.
In the second test case, the players could either both hold serves ( breaks) or both break serves ( breaks).
In the third test case, either or breaks could happen:
- Borys holds serve, Borys breaks serve, Borys holds serve, Borys breaks serve, Borys holds serve: breaks;
- Borys breaks serve, Borys holds serve, Borys breaks serve, Borys holds serve, Borys breaks serve: breaks.