#include #ifdef _DEBUG #include "debug.hpp" #else #define debug(...) #endif #define REP(i, m, n) for(int i = (int)(m); i < (int)(n); ++i) #define rep(i, n) REP(i, 0, n) using namespace std; using ll = long long; using ld = long double; using pll = pair; const int INF = 1<<30; const ll LINF = 1LL<<60; const ld PI = 3.1415926535897932; template inline bool chmax(T &a, const U &b) { if(a < b) { a = b; return true; } return false; } template inline bool chmin(T &a, const U &b) { if(a > b) { a = b; return true; } return false; } int dp[1010][10100]; signed main() { cin.tie(0); ios::sync_with_stdio(false); int n; cin >> n; vector y(n); rep(i, n) cin >> y[i]; rep(i, 1010) rep(j, 10100) dp[i][j] = INF; rep(j, 10100) dp[0][j] = 0; rep(i, n) { int mn = INF; rep(j, 10100) { chmin(mn, dp[i][j]); dp[i+1][j] = mn+abs(y[i]-j); } } int ans = INF; rep(i, 10100) chmin(ans, dp[n][i]); cout << ans << '\n'; return 0; }