#include<bits/stdc++.h> #define rep(i, n) for(ll i = 0; i < (ll)(n); i++) template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; } template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return 1; } return 0; } #define all(x) (x).begin(),(x).end() #pragma GCC optimize("Ofast") using namespace std; typedef long long int ll; typedef long double ld; const ll INF=(1LL<<62); const ld pi=acosl((ld)-1); const ll mod = 1000000007; // const ll mod = 1234567; const int dx[4]={0,1,0,-1}; const int dy[4]={1,0,-1,0}; const int ddx[8]={1,0,-1,-1,-1,0,1,1}; const int ddy[8]={1,1,1,0,-1,-1,-1,0}; #define endn "\n" #define TO_STRING(VariableName) # VariableName template <typename T>ostream &operator<<(ostream &out,const vector<T> &v) {rep(i,(int)v.size()-1)cout<<v[i]<<" ";cout<<v[(int)v.size()-1];return out;} template <typename T1, typename T2>ostream &operator<<(ostream &out, const map<T1, T2> &p) {out << "(" << p.first << ", " << p.second << ")";return out;} template <typename T1, typename T2>ostream &operator<<(ostream &out, const pair<T1, T2> &p){out << "(" << p.first << ", " << p.second << ")";return out;} template<class T>void debag(const T &obj){cout<<obj<<endl;} bool solve(){ ll n;cin>>n; ll m=20000; vector<ll>y(n); rep(i,n)cin>>y[i]; vector<vector<ll>>dp(n+1,vector<ll>(m+1,INF)); dp[0][0]=0; vector<ll>ma(m+1,INF); rep(i,n){ ll num=INF; rep(j,m+1){ chmin(num,dp[i][j]); dp[i+1][j]=num+abs(j-y[i]); } } ll ans=INF; rep(j,m+1)chmin(ans,dp[n][j]); cout<<ans<<endl; return false; } signed main(){ ios::sync_with_stdio(false); cin.tie(nullptr); cout<<fixed<<setprecision(15); solve(); }