Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <bits/stdc++.h>
- using namespace std;
- int main() {
- int n;
- cin >> n;
- int arr [n];
- for (int i = 0; i < n; ++i) {
- cin >> arr[i];
- }
- long long moves = 0;
- for (int i = 1; i < n; ++i) {
- if (arr[i] < arr[i - 1]) {
- moves += arr[i - 1] - arr[i];
- arr[i] = arr[i - 1];
- }
- }
- cout << moves << endl;
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement