CF720D.Slalom

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Little girl Masha likes winter sports, today she's planning to take part in slalom skiing.

The track is represented as a grid composed of n×mn×m squares. There are rectangular obstacles at the track, composed of grid squares. Masha must get from the square (1,1)(1,1) to the square (n,m)(n,m) . She can move from a square to adjacent square: either to the right, or upwards. If the square is occupied by an obstacle, it is not allowed to move to that square.

One can see that each obstacle can actually be passed in two ways: either it is to the right of Masha's path, or to the left. Masha likes to try all ways to do things, so she would like to know how many ways are there to pass the track. Two ways are considered different if there is an obstacle such that it is to the right of the path in one way, and to the left of the path in the other way.

Help Masha to find the number of ways to pass the track. The number of ways can be quite big, so Masha would like to know it modulo 109+710^{9}+7 .

The pictures below show different ways to pass the track in sample tests.

输入格式

The first line of input data contains three positive integers: nn , mm and kk ( 3<=n,m<=1063<=n,m<=10^{6} , 0<=k<=1050<=k<=10^{5} ) — the size of the track and the number of obstacles.

The following kk lines contain four positive integers each: x1x_{1} , y1y_{1} , x2x_{2} , y2y_{2} ( 1<=x1<=x2<=n1<=x_{1}<=x_{2}<=n , 1<=y1<=y2<=m1<=y_{1}<=y_{2}<=m ) — coordinates of bottom left, and top right squares of the obstacle.

It is guaranteed that there are no obstacles at squares (1,1)(1,1) and (n,m)(n,m) , and no obstacles overlap (but some of them may touch).

输出格式

Output one integer — the number of ways to pass the track modulo 109+710^{9}+7 .

输入输出样例

  • 输入#1

    3 3 0
    

    输出#1

    1
    
  • 输入#2

    4 5 1
    2 2 3 4
    

    输出#2

    2
    
  • 输入#3

    5 5 3
    2 2 2 3
    4 2 5 2
    4 4 4 4
    

    输出#3

    3
    
首页