#P1373F. Network Coverage

    ID: 5447 Type: RemoteJudge 2000ms 256MiB Tried: 0 Accepted: 0 Difficulty: (None) Uploaded By: Tags>binary searchconstructive algorithmsdata structuresgreedy*2400

Network Coverage

No submission language available for this problem.

Description

The government of Berland decided to improve network coverage in his country. Berland has a unique structure: the capital in the center and nn cities in a circle around the capital. The capital already has a good network coverage (so the government ignores it), but the ii-th city contains aia_i households that require a connection.

The government designed a plan to build nn network stations between all pairs of neighboring cities which will maintain connections only for these cities. In other words, the ii-th network station will provide service only for the ii-th and the (i+1)(i + 1)-th city (the nn-th station is connected to the nn-th and the 11-st city).

All network stations have capacities: the ii-th station can provide the connection to at most bib_i households.

Now the government asks you to check can the designed stations meet the needs of all cities or not — that is, is it possible to assign each household a network station so that each network station ii provides the connection to at most bib_i households.

The first line contains a single integer tt (1t1041 \le t \le 10^4) — the number of test cases.

The first line of each test case contains the single integer nn (2n1062 \le n \le 10^6) — the number of cities and stations.

The second line of each test case contains nn integers (1ai1091 \le a_i \le 10^9) — the number of households in the ii-th city.

The third line of each test case contains nn integers (1bi1091 \le b_i \le 10^9) — the capacities of the designed stations.

It's guaranteed that the sum of nn over test cases doesn't exceed 10610^6.

For each test case, print YES, if the designed stations can meet the needs of all cities, or NO otherwise (case insensitive).

Input

The first line contains a single integer tt (1t1041 \le t \le 10^4) — the number of test cases.

The first line of each test case contains the single integer nn (2n1062 \le n \le 10^6) — the number of cities and stations.

The second line of each test case contains nn integers (1ai1091 \le a_i \le 10^9) — the number of households in the ii-th city.

The third line of each test case contains nn integers (1bi1091 \le b_i \le 10^9) — the capacities of the designed stations.

It's guaranteed that the sum of nn over test cases doesn't exceed 10610^6.

Output

For each test case, print YES, if the designed stations can meet the needs of all cities, or NO otherwise (case insensitive).

Samples

Sample Input 1

5
3
2 3 4
3 3 3
3
3 3 3
2 3 4
4
2 3 4 5
3 7 2 2
4
4 5 2 3
2 3 2 7
2
1 1
10 10

Sample Output 1

YES
YES
NO
YES
YES

Note

In the first test case:

  • the first network station can provide 22 connections to the first city and 11 connection to the second city;
  • the second station can provide 22 connections to the second city and 11 connection to the third city;
  • the third station can provide 33 connections to the third city.

In the second test case:

  • the 11-st station can provide 22 connections to the 11-st city;
  • the 22-nd station can provide 33 connections to the 22-nd city;
  • the 33-rd station can provide 33 connections to the 33-rd city and 11 connection to the 11-st station.

In the third test case, the fourth city needs 55 connections, but the third and the fourth station has 44 connections in total.