Codeforces Round #117 (Div. 2)E

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 n different types of wood. The company uses the i-th type of wood to produce a board of this type that is a rectangular ai by bi 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 l, 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 typethe 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 i-th board in the fence is different from the i-1-th board’s type; besides, the i-th board’s length is equal to the i-1-th board’s width (for all i, 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 l.

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 1000000007 (109+7). Input

The first line contains two integers n and l (1≤n≤100,1≤l≤3000) — the number of different board types and the fence length, correspondingly. Next n lines contain descriptions of board types: the i-th line contains two integers ai and bi (1≤ai,bi≤100) — the sizes of the board of the i-th type. All numbers on the lines are separated by spaces. Output

Print a single integer — the sought number of variants modulo 1000000007 (109+7). Sample test(s) Input

2 3 1 2 2 3

Output

2

Input

1 2 2 2

Output

1

Input

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

Output

20

Note

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.

设dp[i][j] 表示长度为i,最后一个board是j的方案数,注意,,如果一个board的长和宽一样,那么无论如何放置,只能算一种,对于其他的board,把它分成2份,长为a,宽为b;长为b,宽为a,类型相同

/*************************************************************************> File Name: CF-117-E.cpp> Author: ALex> Mail: zchao1995@gmail.com> Created Time: 2015年03月21日 星期六 11时39分10秒 ************************************************************************/;const double pi = acos(-1.0);const int inf = 0x3f3f3f3f;const double eps = 1e-15;LL;typedef pair <int, int> PLL;const int mod = 1000000007;LL dp[3110][220];struct node{int l, w;int ty;}data[220];int main(){int n, l;while (~scanf(“%d%d”, &n, &l)){int a, b;int cnt = 0;memset(dp, 0, sizeof(dp));for (int i = 1; i <= n; ++i){scanf(“%d%d”, &a, &b);data[++cnt].l = a;data[cnt].w = b;data[cnt].ty = i;dp[a][cnt] = 1;if (a != b){data[++cnt].l = b;data[cnt].w = a;data[cnt].ty = i;dp[b][cnt] = 1;}}for (int i = 1; i <= l; ++i){for (int j = 1; j <= cnt; ++j){if (dp[i][j]){for (int k = 1; k <= cnt; ++k){if (data[k].ty == data[j].ty){continue;}if (data[k].l == data[j].w){dp[i + data[k].l][k] += dp[i][j];dp[i + data[k].l][k] %= mod;}}}}}LL ans = 0;for (int i = 1; i <= cnt; ++i){ans += dp[l][i];ans %= mod;}printf(“%I64d\n”, ans);}return 0;}

下午某时,天气晴,我在某地,想念你。

Codeforces Round #117 (Div. 2)E

相关文章:

你感兴趣的文章:

标签云: