A10121 | Lipshitz Sequence
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
A function  is called Lipschitz continuous if there is a real constant $K$ such that the inequality $|f(x)-f(y)|<=K·|x-y|$ holds for all . We'll deal with a more... discrete version of this term.
For an array , we define it's Lipschitz constant  as follows:
- if $n<2$ , 
- if $n>=2$ ,  over all $1<=i<j<=n$
In other words,  is the smallest non-negative integer such that $|h[i]-h[j]|<=L·|i-j|$ holds for all $1<=i,j<=n$ .
You are given an array  of size $n$ and $q$ queries of the form $[l,r]$ . For each query, consider the subarray ; determine the sum of Lipschitz constants of all subarrays of .
For an array , we define it's Lipschitz constant  as follows:
- if $n<2$ , 
- if $n>=2$ ,  over all $1<=i<j<=n$
In other words,  is the smallest non-negative integer such that $|h[i]-h[j]|<=L·|i-j|$ holds for all $1<=i,j<=n$ .
You are given an array  of size $n$ and $q$ queries of the form $[l,r]$ . For each query, consider the subarray ; determine the sum of Lipschitz constants of all subarrays of .
输入格式
The first line of the input contains two space-separated integers $n$ and $q$ ( $2<=n<=100000$ and $1<=q<=100$ ) — the number of elements in array  and the number of queries respectively.
The second line contains $n$ space-separated integers  ().
The following $q$ lines describe queries. The $i$ -th of those lines contains two space-separated integers $l_{i}$ and $r_{i}$ ( $1<=l_{i}<r_{i}<=n$ ).
The second line contains $n$ space-separated integers  ().
The following $q$ lines describe queries. The $i$ -th of those lines contains two space-separated integers $l_{i}$ and $r_{i}$ ( $1<=l_{i}<r_{i}<=n$ ).
输出格式
Print the answers to all queries in the order in which they are given in the input. For the $i$ -th query, print one line containing a single integer — the sum of Lipschitz constants of all subarrays of .
输入输出样例
输入 #1
10 4 1 5 2 9 1 3 4 2 1 7 2 4 3 8 7 10 1 9
输出 #1
17 82 23 210
输入 #2
7 6 5 7 7 4 6 6 2 1 2 2 3 2 6 1 7 4 7 3 5
输出 #2
2 0 22 59 16 8
In the first query of the first sample, the Lipschitz constants of subarrays of  with length at least $2$ are:
- 
- 
- 
The answer to the query is their sum.
- 
- 
- 
The answer to the query is their sum.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted