Hide

Problem G
Trains

Languages en is

You have arrived in Vilnius and want to visit various cities in Lithuania.

Cities in Lithuania are located on a straight line and numbered from 1 to N sequentially. Vilnius is assigned the number 1.

Each city has a train station with a single train route that operates from that station. You can only get on a train at the start of its route, though you can get off at any of its stops. Trains starting their route at the i-th city make a stop every di cities, and their route consists of xi stops (not including the starting city). If di=0, the trains operating from the i-th city are currently out of service, so you cannot get on them.

To be more precise, if you get on a train in the i-th city, you can get off the train in any city numbered i+tdi, where 1txi. Note that since you only want to visit cities in Lithuania, you won’t ride further than the N-th city, even if the train has more stops on its route.

Task

You are going to visit some cities, using trains to travel between them. As you plan your trip, you start to wonder how many different options you have for your journey that starts at Vilnius. Two journeys are different if they make stops at different sequences of cities.

Calculate this number and print the answer modulo 109+7.

Input

The first line contains one integer N - the number of cities.

Then N lines follow. The i-th of them contains two integers di and xi – the numbers describing the route starting in the i-th city.

Output

Output a single integer - the number of ways you can visit some of the N cities taken modulo 109+7.

Constraints

  • 1N105

  • 0di109 (for each 1iN)

  • 0xi109 (for each 1iN)

Subtasks

No.

Points

Additional constraints

1

8

n15.

2

13

n104.

3

16

For all trains, di=1.

4

34

For all trains, xi=109.

5

29

No additional constraints.

Examples

There are 7 possible journeys you could take:

  • 1

  • 12

  • 124

  • 13

  • 134

  • 135

  • 14

Sample Input 1 Sample Output 1
5
1 3
2 1
1 3
0 10
3 5
7
Hide

Please log in to submit a solution to this problem

Log in