Hide

Problem C
Canvas Line

Your friend Charmion asked you to hang some canvases out to dry on a straight washing line for an art project she has been working on. The canvases are artfully arranged such that none of them overlap, although they may touch along the edges. For stability, each canvas must be held by two pegs, but because the canvases are very rigid, they can be held from anywhere.

Each canvas is an integral number of centimetres wide (at least $10$ cm). Each peg is slightly less than $1$ cm wide. Canvases and pegs are all placed at integral centimetre positions along the line.

Unnecessary things touching any canvas is a smudge risk, thus every canvas should be held by exactly two pegs, no more and no less. Given all of the pegs that are already attached to the line, place as few as possible additional pegs as necessary to hold all of the canvases.

\includegraphics[width=1.0\textwidth ]{sample}
Figure 1: Illustration of a solution to Sample Input 2. Pre-existing pegs are marked in white.

Input

The input consists of:

  • One line with an integer $n$ ($1 \leq n \leq 10^3$), the number of canvases on the line.

  • $n$ lines, the $i$th of which contains two integers $\ell _ i$ and $r_ i$ ($0 \leq \ell _ i < r_ i \leq 10^9$ and $\ell _ i + 10 \le r_ i$), the positions of the left and the right end of the $i$th canvas in centimetres.

  • One line with an integer $p$ ($0 \leq p \leq 2 \cdot 10^3$), the number of pegs already used.

  • One line with $p$ integers $x_1, \ldots , x_ p$ ($0 \leq x_ i < x_{i+1} \leq 10^9$ for each $i$), the position of each existing peg in centimetres.

Canvases are given from left to right and may touch only at edges, that is $r_ i \le \ell _{i+1}$ for each $i$.

Output

If the canvases can be secured, output the smallest number of extra pegs needed to secure all of the canvases while touching each exactly twice. On the next line output the integer positions of all of the new pegs.

Otherwise, output “impossible”.

If there are multiple optimal solutions, you may output any one of them.

Sample Input 1 Sample Output 1
4
0 18
18 28
28 40
49 60
4
6 12 35 60
3
28 19 49
Sample Input 2 Sample Output 2
5
2 15
15 25
25 40
42 52
52 62
3
5 29 52
4
15 25 49 58
Sample Input 3 Sample Output 3
3
0 60
60 120
120 140
4
20 60 80 120
impossible

Please log in to submit a solution to this problem

Log in