Hello 2020 C. New Year and Permutation
链接
https://codeforces.com/contest/1284/problem/C
题意
对于一个有 $n$ 个不重复数的序列的排列中有多少个区间使 $max{ pl,pl+1,…,pr}−min{ pl,pl+1,…,pr}=r−l$
思路
假设 $[l,r]$ 满足上述等式,设 $len=r-l+1$,对于此区间,其所有排列均满足上述等式,即有 $len!$ 种排列
将此区间看成一个数放入原序列,则原序列中有 $n-len+1$ 个数,有 $(n-len+1)!$ 种排列
而对于区间长度 $len$ 满足 $max{ pl,pl+1,…,pr}−min{ pl,pl+1,…,pr}=r−l$ 的共有 $n-len+1$ 种情况
所以对于区间长度 $len$ 共有 $(n-len+1)\times{len!}\times{(n-len+1)!}$,$O(n)$ 即可算出结果
代码
1 |
|