GUPTA MECHANICAL

IN THIS WEBSITE I CAN TELL ALL ABOUT TECH. TIPS AND TRICKS APP REVIEWS AND UNBOXINGS ALSO TECH. NEWS .............

Sunday 22 May 2022

[Solution] Range Partition Solution Round C 2022 - Kick Start 2022

Problem

Alan and Barbara suddenly felt like playing with numbers. Alan chooses a non-empty subset from the set of first N positive integers (1,2,,N). Barbara takes the rest of the numbers (if any) from the set. And then they both calculate the sum of the elements in their respective sets.

Alan believes in a magic ratio, which is X:Y. Hence, Alan wants to choose the subset in such a way that the ratio between the sum of Alan's subset and the sum of Barbara's subset is exactly X:Y.

Can you help Alan to choose a subset that can achieve the desired ratio?

Input

The first line of the input gives the number of test cases, TT test cases follow.

Solution Click Below:-  CLICK HERE


Each test case has a single line containing three integers, NX and Y, as described above.

Output

For each test case, output the first line containing Case #xy, where x is the test case number (starting from 1) and y is POSSIBLE, if Alan can choose such a non-empty subset, and IMPOSSIBLE otherwise.


If you print POSSIBLE, then output two more lines for that test case.
In the second line, print a single integer, which denotes the size of Alan's subset.
In the third line, print the integers present in Alan's subset.
If there are multiple solutions, you can print any of them.

Limits

Time limit: 5 seconds.
Memory limit: 1 GB.
1T100.
1X108.
1Y108.
gcd(X,Y)=1, where gcd is Greatest common divisor.

Test Set 1

1N15.

Test Set 2

1N5000.

No comments:

Post a Comment