#Lutece0018. Ringworld

Ringworld

Migrated from Lutece 18 Ringworld

All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.

Description

The world is actually neither a disc or a sphere. It is a ring! There are m cities there, conveniently called 0,1,2,,m10,1,2,\cdots ,m−1, and arranged on the ring in the natural order: first 00, then 11, then 22, \cdots, then m1m−1, and then again 00 (as the world is a ring, remember?). You are given a collection of contiguous ranges of cities. Each of them starts at some city xx, and contains also cities x+1,x+2,,y1,yx+1, x+2, \cdots, y −1,y, for some city yy. Note that the range can wrap around, for instance if m=5m = 5, then [3,4,0][3,4,0] is a valid range, and so are [1][1], [2,3,4][2,3,4], or even [3,4,0,1,2][3,4,0,1,2]. Your task is to choose a single city inside each range so that no city is chosen twice for two different ranges.

Input

The input consists of several lines. The first line contains 1T201\leq T\leq 20, the number of test cases. Each test case consists of a number of lines. The first line contains two integers 1m1091\leq m\leq 10^9 and 1n1051\leq n\leq 10^5 denoting the number of cities and the number of requests, respectively. The next nn lines define the ranges: the ithi^{th} row contains two integers 0xi,yi<m0\leq x_i ,y_i < m describing the ithi^{th} range [xi,xi+1[x i ,x i + 1 mod m,...,yi]m,...,y i ].

Output

For each test case, output one line containing YES if it is possible to assign a unique city to each request, and NO otherwise.

Samples

4
3 3
0 1
1 2
2 0
200000 3
100000 100000
100001 100001
100000 100001
6 6
0 1
1 2
2 3
3 4
4 5
5 0
6 6
0 0
1 2
2 3
4 4
4 5
5 0
YES
NO
YES
NO

Resources

GCPC 2013