For this problem, you are given two things: a numeric
interval , and a
list of other numeric intervals which, when combined, should
“cover” (overlap completely with) the interval . In particular, you should
find a minimal set of the intervals needed for the
cover.
Input
The input consists of up to test cases. Each test case begins
with two real numbers , indicating that is the interval to be covered. Then follows an
integer , giving the number of intervals available. After
this follow lines, the
’th of which contains
two real numbers , indicating that the ’th interval is . All real numbers
have at most digits
after the decimal point.
Output
For each test case, output one line containing the minimal
number of intervals needed to cover , followed by a line
containing the indices of one such optimal covering (the first
interval has index ,
the second index , and
so on). The intervals can be given in any order.
If it is not possible to cover using the intervals, output a
line containing the word “impossible”
instead.
Sample Input 1 |
Sample Output 1 |
-0.5 1
3
-0.9 -0.1
-0.2 2
-0.7 1
0 1
3
0 0.25
0.25 0.75
0.75 0.999
0 1
3
0 0.25
0.25 0.75
0.75 1
1 1
1
1 1
|
1
2
impossible
3
0 1 2
1
0
|