A15691 | Moscow Gorillas
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
In winter, the inhabitants of the Moscow Zoo are very bored, in particular, it concerns gorillas. You decided to entertain them and brought a permutation $p$ of length $n$ to the zoo.
A permutation of length $n$ is an array consisting of $n$ distinct integers from $1$ to $n$ in any order. For example, $[2,3,1,5,4]$ is a permutation, but $[1,2,2]$ is not a permutation ( $2$ occurs twice in the array) and $[1,3,4]$ is also not a permutation ( $n=3$ , but $4$ is present in the array).
The gorillas had their own permutation $q$ of length $n$ . They suggested that you count the number of pairs of integers $l, r$ ( $1 \le l \le r \le n$ ) such that $\operatorname{MEX}([p_l, p_{l+1}, \ldots, p_r])=\operatorname{MEX}([q_l, q_{l+1}, \ldots, q_r])$ .
The $\operatorname{MEX}$ of the sequence is the minimum integer positive number missing from this sequence. For example, $\operatorname{MEX}([1, 3]) = 2$ , $\operatorname{MEX}([5]) = 1$ , $\operatorname{MEX}([3, 1, 2, 6]) = 4$ .
You do not want to risk your health, so you will not dare to refuse the gorillas.
A permutation of length $n$ is an array consisting of $n$ distinct integers from $1$ to $n$ in any order. For example, $[2,3,1,5,4]$ is a permutation, but $[1,2,2]$ is not a permutation ( $2$ occurs twice in the array) and $[1,3,4]$ is also not a permutation ( $n=3$ , but $4$ is present in the array).
The gorillas had their own permutation $q$ of length $n$ . They suggested that you count the number of pairs of integers $l, r$ ( $1 \le l \le r \le n$ ) such that $\operatorname{MEX}([p_l, p_{l+1}, \ldots, p_r])=\operatorname{MEX}([q_l, q_{l+1}, \ldots, q_r])$ .
The $\operatorname{MEX}$ of the sequence is the minimum integer positive number missing from this sequence. For example, $\operatorname{MEX}([1, 3]) = 2$ , $\operatorname{MEX}([5]) = 1$ , $\operatorname{MEX}([3, 1, 2, 6]) = 4$ .
You do not want to risk your health, so you will not dare to refuse the gorillas.
输入格式
The first line contains a single integer $n$ ( $1 \le n \le 2 \cdot 10^5$ ) — the permutations length.
The second line contains $n$ integers $p_1, p_2, \ldots, p_n$ ( $1 \le p_i \le n$ ) — the elements of the permutation $p$ .
The third line contains $n$ integers $q_1, q_2, \ldots, q_n$ ( $1 \le q_i \le n$ ) — the elements of the permutation $q$ .
The second line contains $n$ integers $p_1, p_2, \ldots, p_n$ ( $1 \le p_i \le n$ ) — the elements of the permutation $p$ .
The third line contains $n$ integers $q_1, q_2, \ldots, q_n$ ( $1 \le q_i \le n$ ) — the elements of the permutation $q$ .
输出格式
Print a single integer — the number of suitable pairs $l$ and $r$ .
输入输出样例
输入 #1
3 1 3 2 2 1 3
输出 #1
2
输入 #2
7 7 3 6 2 1 5 4 6 7 2 5 3 1 4
输出 #2
16
输入 #3
6 1 2 3 4 5 6 6 5 4 3 2 1
输出 #3
11
In the first example, two segments are correct – $[1, 3]$ with $\operatorname{MEX}$ equal to $4$ in both arrays and $[3, 3]$ with $\operatorname{MEX}$ equal to $1$ in both of arrays.
In the second example, for example, the segment $[1, 4]$ is correct, and the segment $[6, 7]$ isn't correct, because $\operatorname{MEX}(5, 4) \neq \operatorname{MEX}(1, 4)$ .
In the second example, for example, the segment $[1, 4]$ is correct, and the segment $[6, 7]$ isn't correct, because $\operatorname{MEX}(5, 4) \neq \operatorname{MEX}(1, 4)$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted