首先题目主要关注|a[i]-a[i+1]|,所以很容易想到得先进行差分。。然后操作2就直接变成单点操作了,很舒服。。
然后对操作1,主要要判断要在哪个点加x了。。
貌似非常麻烦的样子。。然后参考了下q巨的解法。。竟然是构造分段函数。。。orz
考虑到对某点+x只影响相邻的2个差值,所以可以运用分段函数处理+x后改变的值。。
设差分后的数组为c(c[i]=a[i]-a[i-1]),改变点i,f(a)改变值t=|c[i]+x|+|c[i+1]-x|-|c[i]|-|c[i+1]|
非常像学不等式选讲的函数。。最低处为水平线,值为min=|c[i]+c[i+1]|-|c[i]|-|c[i+1]|(三角不等式)
然后代点求出另外2条一次函数的截距就可以了。。
然后q巨教会窝萌。。想这个函数直接把x代入3个表达式求最大值就可以了。。orz!!!
这样的话函数和函数之间就可以合并了。。对每一段函数直接比较截距的最大值就可以了。。这样可以很优雅地选出f(a)的最大增量。。
合并时当然要用线段树。。然而要注意1和n这2点改变时只改变一个c,需要特判。。。
/**
* ┏┓ ┏┓
* ┏┛┗━━━━━━━┛┗━━━┓
* ┃ ┃
* ┃ ━ ┃
* ┃ > < ┃
* ┃ ┃
* ┃... ⌒ ... ┃
* ┃ ┃
* ┗━┓ ┏━┛
* ┃ ┃ Code is far away from bug with the animal protecting
* ┃ ┃ 神兽保佑,代码无bug
* ┃ ┃
* ┃ ┃
* ┃ ┃
* ┃ ┃
* ┃ ┗━━━┓
* ┃ ┣┓
* ┃ ┏┛
* ┗┓┓┏━┳┓┏┛
* ┃┫┫ ┃┫┫
* ┗┻┛ ┗┻┛
*/
#include
#include
#include
#include
#include
#include
#include
Fafa has an array A of n positive integers, the function f(A) is defined as . He wants to do q queries of two types:
Note that queries of type 1 don't affect the array elements.
The first line contains one integer n (3 ≤ n ≤ 105) — the length of the array.
The second line contains n positive integers a1, a2, ..., an (0 < ai ≤ 109) — the array elements.
The third line contains an integer q (1 ≤ q ≤ 105) — the number of queries.
Then q lines follow, line i describes the i-th query and contains four integers ti li ri xi .
It is guaranteed that at least one of the queries is of type 1.
For each query of type 1, print the answer to the query.
5 1 1 1 1 1 5 1 2 4 1 2 2 3 1 2 4 4 2 2 3 4 1 1 3 3 2
2 8
5 1 2 3 4 5 4 1 2 4 2 2 2 4 1 2 3 4 1 1 2 4 2
6 10