Tiger 最近被公司升任为营业部经理,他上任后接受公司交给的第一项任务便是统计并分析公司成立以来的营业情况。
Tiger 拿出了公司的账本,账本上记录了公司成立以来每天的营业额。分析营业情况是一项相当复杂的工作。由于节假日,大减价或者是其他情况的时候,营业额会出现一定的波动,当然一定的波动是能够接受的,但是在某些时候营业额突变得很高或是很低,这就证明公司此时的经营状况出现了问题。经济管理学上定义了一种最小波动值来衡量这种情况:当最小波动值越大时,就说明营业情况越不稳定。
而分析整个公司的从成立到现在营业情况是否稳定,只需要把每一天的最小波动值加起来就可以了。你的任务就是编写一个程序帮助 Tiger 来计算这一个值。
我们定义,一天的最小波动值 = min ? { ∣ 该天以前某一天的营业额 ? 该天营业额 ∣ } \min\{|\text{该天以前某一天的营业额}-\text{该天营业额}|\} min{∣该天以前某一天的营业额?该天营业额∣}。
特别地,第一天的最小波动值为第一天的营业额。
第一行为正整数 n n n( n ≤ 32767 n \leq 32767 n≤32767) ,表示该公司从成立一直到现在的天数,接下来的 n n n 行每行有一个整数 a i a_i ai?( ∣ a i ∣ ≤ 1 0 6 |a_i| \leq 10^6 ∣ai?∣≤106) ,表示第 i i i 天公司的营业额,可能存在负数。
输出一个正整数,即每一天最小波动值的和,保证结果小于 2 31 2^{31} 231。
6
5
1
2
5
4
6
12
结果说明: 5 + ∣ 1 ? 5 ∣ + ∣ 2 ? 1 ∣ + ∣ 5 ? 5 ∣ + ∣ 4 ? 5 ∣ + ∣ 6 ? 5 ∣ = 5 + 4 + 1 + 0 + 1 + 1 = 12 5+|1-5|+|2-1|+|5-5|+|4-5|+|6-5|=5+4+1+0+1+1=12 5+∣1?5∣+∣2?1∣+∣5?5∣+∣4?5∣+∣6?5∣=5+4+1+0+1+1=12
#include<bits/stdc++.h>
using namespace std;
#define IOS ios::sync_with_stdio(0),cin.tie(0),cout.tie(0)
#define endl "\n"
#define int long long
#define fi first
#define se second
#define lb lower_bound
#define ub upper_bound
#define gcd __gcd
#define repn(i,a,n) for(int i = a; i <= n; i++)
#define rep(i,a,n) for(int i = a; i < n; i++)
typedef pair<int,int> PII;
const int INF = 1e9;
set<int> s;
void solve(){
int n,ans=0,res;
cin>>n;
vector<int> a(n+1);
repn(i,1,n) cin>>a[i];
s.insert(INF),s.insert(-INF);//防止查找时越界出现异常错误
s.insert(a[1]);
ans+=a[1];
repn(i,2,n){
auto it=s.lb(a[i]), it1=--s.lb(a[i]);//找到a[i]旁边的元素
s.insert(a[i]);
//cout<<a[i]<<' '<<*it<<' '<<*it1<<endl;
ans+=min(abs(a[i]-*it),abs(a[i]-*it1));//取波动值较小值
}
cout<<ans<<endl;
}
signed main(){
IOS;
int T=1;
while(T--){
solve();
}
return 0;
}