BEHAPPY - Be Awesome As Barney Stinson


Barney Stinson ;) is way too flirty. He has many girlfriends and he wants to keep all of them happy. He has M girlfriends. He bought N gifts for them. Now he knows that some girlfriends need more gifts and some need less. So he decided that he will give at least Ai gifts and at most Bi gifts to his ith girlfriend. He has to give away all the N gifts. Tell us in how many different ways he can do this.

Input

For each test case, first line contains two integers M and N, then follows M lines each having two integers Ai and Bi (1 ≤ i ≤ M). Input ends with M and N both equal to 0 and that case should not be processed.

Output:

For each test case, output the number of different ways in which he can distribute those gifts in a single line.

Constraints

1 ≤ M ≤ 20, 1 ≤ N ≤ 100, 0 ≤ Ai, Bi ≤100

Example

Input:
3 5
0 1
1 3
1 4
0 0

Output:
6

Explanation

He can distribute 5 gifts in his 3 girlfriends in 6 different ways as follows (0 1 4), (0 2 3), (0 3 2), (1 1 3), (1 2 2), (1 3 1).


hide comments
Saksham : 2015-08-13 00:49:58

Nice one

sarvagya: 2015-08-07 02:24:40

learnt a lot about dp with this ! 0.00 AC :D

:.Mohib.:: 2015-06-30 06:54:55

Nice one :)

Rishabh Joshi: 2015-03-19 17:56:19

better constraints, same question. Try http://www.spoj.com/problems/UOFTAE/

a b : 2015-02-23 18:16:53

cases are very weak , exponential order gets AC

Abhishek: 2014-12-12 17:49:08

Any of Recursion and Backtracking will do.

californiagurl: 2014-02-14 19:43:05

recursion?
really didn't expect my solution to pass....turns out it did :)

Last edit: 2014-02-14 20:57:48
Anand Mishra: 2013-09-14 17:59:38

Legen......wait for it................still waiting......
Dary!!Legendary problem :)

on the hell: 2013-04-10 13:52:00

even bactracking goes ...

ALI HASAN: 2012-12-04 13:26:33

Very nice problem


Added by:Ankit Kumar Vats
Date:2011-10-21
Time limit:1s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All except: ASM64
Resource:Inspired