Oland must not fall

Time Limit: 3 Seconds    Memory Limit: 32768 KB

It’s about a month since the sixth army of the evil Miniophers has invaded Olandica. Their troops are now spread all over Oland, an strategic city in the west of Olandica, and have made a lot of casualties to the civilians. Fortunately, a few hospitals are still held by the Olanders, but there is a shortage of Unophine, a medication needed to cure damages caused by a biological weapon the wicked Miniophers have been using. To remedy this, the Olanders has dug a number of tunnels connecting some of the hospitals. This way, a Unophine pack may be delivered from a hospital to another if there is a tunnel connecting them. Note thatsince the tunnels are not that wide, each time only a single Unophine pack may be transfered via a tunnel.

Three times a day, each hospital contacts the operations HQ and announces the number of Unophine packs needed, and the number of packs it currently stores. Then, HQ comes up with a plan (if possible) to distribute the packs to match the hospitals’ needs. The cost of a plan is the number of packs to be transferred. As an example, consider three hospitals A, B, and C which store 3, 2, and 3 packs respectively. Suppose there are two tunnels between A and B, and between B and C. If the hospitals need 4, 3, and 1 packs, a distribution plan (of cost 3) would be to transfer one pack from B to A, and then two packs from C to B.

The problem is, given the tunnels and the current pack storage, determine the minimum cost of a distribution plan to match the needed packs. 


Input

There are T < 32 test cases in the input. Each test case starts with a pair of two integers and R (1 ≤ L,R ≤ 128) which are the number of hospitals and the number of tunnels respectively. The hospitals are numbered from 1 to L. Each of the next lines contains two integers si and ni (1 ≤ si,ni ≤ 10000) which specify the number of packs the ith hospital stores and the number of packs it needs. Each of the next lines contains two integers and between 1 and which indicates that there is a tunnel between the hospitals and j.


Output

For each test case, output the minimum cost of the distribution plans on a single line. if it is not possible to find a plan, output -1.

Sample Input

2
3 2
1 0
2 2
0 1
1 2
2 3
2 1
1 1
2 1
2 1

Sample Output

2
-1
Submit

Source: 14th Iran Nationwide Internet Contest