#ABC150C. Count Order
Count Order
题目描述
We have two permutations and of size (that is, and are both rearrangements of ).
There are possible permutations of size . Among them, let and be the -th and -th lexicographically smallest permutations, respectively. Find .
我们有两个大小为 的排列 和 (即 和 都是 的重排)。
大小为 的可能排列有 种。其中 和 分别是 -th和 -th词典上最小的排列。求 。
输入格式
输入内容按以下格式标准输入:
输出格式
打印 .
样例 #1
样例输入 #1
3
1 3 2
3 1 2
样例输出 #1
3
样例 #2
样例输入 #2
8
7 3 5 4 2 1 6 8
3 8 2 5 4 6 7 1
样例输出 #2
17517
样例 #3
样例输入 #3
3
1 2 3
1 2 3
样例输出 #3
0
说明
对于两个序列 和 而言,当且仅当存在一个整数 使得 和 小于 时,才称 在词序上小于 。
数据规模与约定
- 和 是大小为 的排列。
样例 解释
大小为 的排列有 种: 、 、 、 、 和 。其中, 和 按词典顺序依次为 (nd)和 (th),因此答案为 。