当前你的浏览器版本过低,网站已在兼容模式下运行,兼容模式仅提供最小功能支持,网站样式可能显示不正常。
请尽快升级浏览器以体验网站在线编辑、在线运行等功能。

建议使用的浏览器:

谷歌Chrome 火狐Firefox Opera浏览器 微软Edge浏览器 QQ浏览器 360浏览器 傲游浏览器

6630:permutation 2

题目描述
You are given three positive integers $N, x, y$.
Please calculate how many permutations of $1 \sim N$ satisfies the following conditions (We denote the $i$-th number of a permutation by $p_i$):

1. $p_1 = x$

2. $p_N = y$

3. for all $1 \le i <N$, $|p_i - p_{i+1}| \le 2$
输入解释
The first line contains one integer $T$ denoting the number of tests.

For each test, there is one line containing three integers $N, x, y$.

* $1 \le T \le 5000$

* $2 \le N \le 10^5$

* $1 \le x < y \le N$
输出解释
For each test, output one integer in a single line indicating the answer modulo $998244353$.
输入样例
3
4 1 4
4 2 4
100000 514 51144
输出样例
2
1
253604680
来自杭电HDUOJ的附加信息
Recommend liuyiding

该题目是Virtual Judge题目,来自 杭电HDUOJ

源链接: HDU-6630

最后修改于 2020-10-25T23:33:00+00:00 由爬虫自动更新

共提交 0

通过率 --%
时间上限 内存上限
2000/1000MS(Java/Others) 262144/262144K(Java/Others)