CF182E.Wooden Fence

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Vasya has recently bought some land and decided to surround it with a wooden fence.

He went to a company called "Wooden board" that produces wooden boards for fences. Vasya read in the catalog of products that the company has at its disposal nn different types of wood. The company uses the ii -th type of wood to produce a board of this type that is a rectangular aia_{i} by bib_{i} block.

Vasya decided to order boards in this company and build a fence from them. It turned out that the storehouse of the company is so large that Vasya can order arbitrary number of boards of every type. Note that Vasya is allowed to turn the boards as he builds the fence. However, Vasya cannot turn square boards.

Vasya is required to construct a fence of length ll , however, an arbitrary fence won't do. Vasya wants his fence to look beautiful. We'll say that a fence is beautiful if and only if the following two conditions are fulfilled:

  • there are no two successive boards of the same type
  • the first board of the fence has an arbitrary length, and the length of each subsequent board equals the width of the previous one

In other words, the fence is considered beautiful, if the type of the ii -th board in the fence is different from the i1i-1 -th board's type; besides, the ii -th board's length is equal to the i1i-1 -th board's width (for all ii , starting from 2).

Now Vasya wonders, how many variants of arranging a fence for his land exist. Your task is to count the number of different beautiful fences of length ll .

Two fences will be considered the same if the corresponding sequences of fence boards types and rotations are the same, otherwise the fences are different. Since the sought number can be large enough, you need to calculate the answer modulo 10000000071000000007 (109+7)(10^{9}+7) .

输入格式

The first line contains two integers nn and ll ( 1<=n<=100,1<=l<=30001<=n<=100,1<=l<=3000 ) — the number of different board types and the fence length, correspondingly. Next nn lines contain descriptions of board types: the ii -th line contains two integers aia_{i} and bib_{i} ( 1<=ai,bi<=1001<=a_{i},b_{i}<=100 ) — the sizes of the board of the ii -th type. All numbers on the lines are separated by spaces.

输出格式

Print a single integer — the sought number of variants modulo 10000000071000000007 ( 109+710^{9}+7 ).

输入输出样例

  • 输入#1

    2 3
    1 2
    2 3
    

    输出#1

    2
    
  • 输入#2

    1 2
    2 2
    

    输出#2

    1
    
  • 输入#3

    6 6
    2 1
    3 2
    2 5
    3 3
    5 1
    2 1
    

    输出#3

    20
    

说明/提示

In the first sample there are exactly two variants of arranging a beautiful fence of length 3:

  • As the first fence board use the board of the first type of length 1 and width 2. As the second board use board of the second type of length 2 and width 3.
  • Use one board of the second type after you turn it. That makes its length equal 3, and width — 2.
首页