matrix
Background
Description
求出满足以下条件的 n * m 的 01 矩阵个数:
(1) 第 i 行第 1~li 列恰好有 1 个 1。
(2) 第 i 行第 ri~m 列恰好有 1 个 1。
(3) 每列至多有 1 个 1。
Format
Input
第一行两个整数 n,m。接下来 n 行每行 2 个整数 li,ri。
Output
一行一个整数表示答案。对 998244353 取模。
Sample
Input
2 6
2 4
5 6
Output
12
Limitation
对于 20%的数据,n,m<=12。
对于 40%的数据,n,m<=50。
对于 70%的数据,n,m<=300。
对于 100%的数据,n,m<=3000,1<=li<ri<=m。
1s, 128000KiB for each test case.
Hint
Source
CDQZ TEST