A11764 | Runner's Problem
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
You are running through a rectangular field. This field can be represented as a matrix with $3$ rows and $m$ columns. $(i,j)$ denotes a cell belonging to $i$ -th row and $j$ -th column.
You start in $(2,1)$ and have to end your path in $(2,m)$ . From the cell $(i,j)$ you may advance to:
- $(i-1,j+1)$ — only if $i>1$ ,
- $(i,j+1)$ , or
- $(i+1,j+1)$ — only if $i<3$ .
However, there are $n$ obstacles blocking your path. $k$ -th obstacle is denoted by three integers $a_{k}$ , $l_{k}$ and $r_{k}$ , and it forbids entering any cell $(a_{k},j)$ such that $l_{k}<=j<=r_{k}$ .
You have to calculate the number of different paths from $(2,1)$ to $(2,m)$ , and print it modulo $10^{9}+7$ .
You start in $(2,1)$ and have to end your path in $(2,m)$ . From the cell $(i,j)$ you may advance to:
- $(i-1,j+1)$ — only if $i>1$ ,
- $(i,j+1)$ , or
- $(i+1,j+1)$ — only if $i<3$ .
However, there are $n$ obstacles blocking your path. $k$ -th obstacle is denoted by three integers $a_{k}$ , $l_{k}$ and $r_{k}$ , and it forbids entering any cell $(a_{k},j)$ such that $l_{k}<=j<=r_{k}$ .
You have to calculate the number of different paths from $(2,1)$ to $(2,m)$ , and print it modulo $10^{9}+7$ .
输入格式
The first line contains two integers $n$ and $m$ ( $1<=n<=10^{4}$ , $3<=m<=10^{18}$ ) — the number of obstacles and the number of columns in the matrix, respectively.
Then $n$ lines follow, each containing three integers $a_{k}$ , $l_{k}$ and $r_{k}$ ( $1<=a_{k}<=3$ , $2<=l_{k}<=r_{k}<=m-1$ ) denoting an obstacle blocking every cell $(a_{k},j)$ such that $l_{k}<=j<=r_{k}$ . Some cells may be blocked by multiple obstacles.
Then $n$ lines follow, each containing three integers $a_{k}$ , $l_{k}$ and $r_{k}$ ( $1<=a_{k}<=3$ , $2<=l_{k}<=r_{k}<=m-1$ ) denoting an obstacle blocking every cell $(a_{k},j)$ such that $l_{k}<=j<=r_{k}$ . Some cells may be blocked by multiple obstacles.
输出格式
Print the number of different paths from $(2,1)$ to $(2,m)$ , taken modulo $10^{9}+7$ . If it is impossible to get from $(2,1)$ to $(2,m)$ , then the number of paths is $0$ .
输入输出样例
输入 #1
2 5 1 3 4 2 2 3
输出 #1
2
暂无题解
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted