本题链接:登录—专业IT笔试面试备考平台_牛客网
题目:
样例:
|
2 |
思路:
根据题意,要求选取一段区间 +1 ,使得序列单调递增。求最少操作数。
我们选取区间 + 1 是为了不超过前面的最大,所以我们累加比上一次的区间的差值即可。
举例:
5
1 2 3 2 1 ---> 3 --- 2 == 1 , 2 --- 1 == 1 ,所以min_sum = 1 + 1 = 2
5
1 2 3 1 2 ---> 3 --- 2 == 2 ,所以min_sum = 1 + 1 = 2
代码详解如下:
#include <iostream>
#include <vector>
#include <queue>
#include <cstring>
#include <algorithm>
#include <unordered_map>
#define endl '\n'
#define int long long
#define YES puts("YES")
#define NO puts("NO")
#define umap unordered_map
#define All(x) x.begin(),x.end()
#pragma GCC optimize(3,"Ofast","inline")
#define IOS std::ios::sync_with_stdio(false),cin.tie(0), cout.tie(0)
using namespace std;
const int N = 2e6 + 10;
inline void solve();
signed main()
{
// freopen("a.txt", "r", stdin);
IOS;
int _t = 1;
// cin >> _t;
while (_t--)
{
solve();
}
return 0;
}
inline void solve()
{
int ans = 0,n;
cin >> n;
for(int i = 0,x,r = 0;i < n;++i)
{
cin >> x;
if(r > x) ans += (r - x); // 累加递减差值
r = x;
}
cout << ans << endl;
}