测评会员优惠活动进行中 · 开通 VIP,有效期内测评不限次 VIP 优惠中 · 测评不限次 立即查看

A10997. Okabe and El Psy Kongroo

编程题 普及/提高-

题目描述

Okabe likes to take walks but knows that spies from the Organization could be anywhere; that's why he wants to know how many different walks he can take in his city safely. Okabe's city can be represented as all points $(x,y)$ such that $x$ and $y$ are non-negative. Okabe starts at the origin (point $(0,0)$ ), and needs to reach the point $(k,0)$ . If Okabe is currently at the point $(x,y)$ , in one step he can go to $(x+1,y+1)$ , $(x+1,y)$ , or $(x+1,y-1)$ .

Additionally, there are $n$ horizontal line segments, the $i$ -th of which goes from $x=a_{i}$ to $x=b_{i}$ inclusive, and is at $y=c_{i}$ . It is guaranteed that $a_{1}=0$ , $a_{n}<=k<=b_{n}$ , and $a_{i}=b_{i-1}$ for $2<=i<=n$ . The $i$ -th line segment forces Okabe to walk with $y$ -value in the range $0<=y<=c_{i}$ when his $x$ value satisfies $a_{i}<=x<=b_{i}$ , or else he might be spied on. This also means he is required to be under two line segments when one segment ends and another begins.

Okabe now wants to know how many walks there are from the origin to the point $(k,0)$ satisfying these conditions, modulo $10^{9}+7$ .

输入格式

The first line of input contains the integers $n$ and $k$ ( $1<=n<=100$ , $1<=k<=10^{18}$ ) — the number of segments and the destination $x$ coordinate.

The next $n$ lines contain three space-separated integers $a_{i}$ , $b_{i}$ , and $c_{i}$ ( $0<=a_{i}<b_{i}<=10^{18}$ , $0<=c_{i}<=15$ ) — the left and right ends of a segment, and its $y$ coordinate.

It is guaranteed that $a_{1}=0$ , $a_{n}<=k<=b_{n}$ , and $a_{i}=b_{i-1}$ for $2<=i<=n$ .

输出格式

Print the number of walks satisfying the conditions, modulo $1000000007$ ( $10^{9}+7$ ).

输入输出样例

输入 #1
1 3
0 3 3
输出 #1
4
输入 #2
2 6
0 3 0
3 10 2
输出 #2
4

说明/提示

![](/uploads/acgo/image/83e57c9f232fc89e_976e13573bda.jpeg)The graph above corresponds to sample 1. The possible walks are:

- ![](/uploads/acgo/image/9ab5a2b58f3e5eae_19cc7a0f3d4e.jpeg)
- ![](/uploads/acgo/image/8e44aff78be1df41_4550a647e622.jpeg)
- ![](/uploads/acgo/image/7b9ee578a70f4d4b_419098795dcc.jpeg)
- ![](/uploads/acgo/image/4da0cda57f28c4bc_233f5dd1967b.jpeg)

![](/uploads/acgo/image/4b787a1d654514f5_5dd199bc0e25.jpeg)The graph above corresponds to sample 2. There is only one walk for Okabe to reach $(3,0)$ . After this, the possible walks are:

- ![](/uploads/acgo/image/5f207af2a5b4efe0_59ee37c2b11a.jpeg)
- ![](/uploads/acgo/image/a9508866d514cd12_75fe91612e0f.jpeg)
- ![](/uploads/acgo/image/5128f276edce5ad9_2dade12b929f.jpeg)
- ![](/uploads/acgo/image/dfe2afd7dfbecf00_d9ca3da71f6b.jpeg)
上一题 去做题 下一题