A10375 | Friends and Subsequences
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Mike and !Mike are old childhood rivals, they are opposite in everything they do, except programming. Today they have a problem they cannot solve on their own, but together (with you) — who knows?
Every one of them has an integer sequences $a$ and $b$ of length $n$ . Being given a query of the form of pair of integers $(l,r)$ , Mike can instantly tell the value of  while !Mike can instantly tell the value of .
Now suppose a robot (you!) asks them all possible different queries of pairs of integers $(l,r)$ $(1<=l<=r<=n)$ (so he will make exactly $n(n+1)/2$ queries) and counts how many times their answers coincide, thus for how many pairs  is satisfied.
How many occasions will the robot count?
Every one of them has an integer sequences $a$ and $b$ of length $n$ . Being given a query of the form of pair of integers $(l,r)$ , Mike can instantly tell the value of  while !Mike can instantly tell the value of .
Now suppose a robot (you!) asks them all possible different queries of pairs of integers $(l,r)$ $(1<=l<=r<=n)$ (so he will make exactly $n(n+1)/2$ queries) and counts how many times their answers coincide, thus for how many pairs  is satisfied.
How many occasions will the robot count?
输入格式
The first line contains only integer $n$ ( $1<=n<=200000$ ).
The second line contains $n$ integer numbers $a_{1},a_{2},...,a_{n}$ ( $-10^{9}<=a_{i}<=10^{9}$ ) — the sequence $a$ .
The third line contains $n$ integer numbers $b_{1},b_{2},...,b_{n}$ ( $-10^{9}<=b_{i}<=10^{9}$ ) — the sequence $b$ .
The second line contains $n$ integer numbers $a_{1},a_{2},...,a_{n}$ ( $-10^{9}<=a_{i}<=10^{9}$ ) — the sequence $a$ .
The third line contains $n$ integer numbers $b_{1},b_{2},...,b_{n}$ ( $-10^{9}<=b_{i}<=10^{9}$ ) — the sequence $b$ .
输出格式
Print the only integer number — the number of occasions the robot will count, thus for how many pairs  is satisfied.
输入输出样例
输入 #1
6 1 2 3 2 1 4 6 7 1 2 3 2
输出 #1
2
输入 #2
3 3 3 3 1 1 1
输出 #2
0
The occasions in the first sample case are:
1\. $l=4$ , $r=4$ since $max{2}=min{2}$ .
2\. $l=4$ , $r=5$ since $max{2,1}=min{2,3}$ .
There are no occasions in the second sample case since Mike will answer $3$ to any query pair, but !Mike will always answer $1$ .
1\. $l=4$ , $r=4$ since $max{2}=min{2}$ .
2\. $l=4$ , $r=5$ since $max{2,1}=min{2,3}$ .
There are no occasions in the second sample case since Mike will answer $3$ to any query pair, but !Mike will always answer $1$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted