bool TEST = false; using namespace std; #include #include #define rep(i,n) for(int (i)=0;(i)<(ll)(n);i++) #define repr(i,n) for(int (i)=(ll)(n)-1;(i)>=0;i--) #define range(i,start,end,step) for(int (i)=start;(i)<(ll)(end);(i)+=(step)) #define dump(x) cerr << "Line " << __LINE__ << ": " << #x << " = " << (x) << "\n"; #define spa << " " << #define fi first #define se second #define all(a) (a).begin(),(a).end() #define allr(a) (a).rbegin(),(a).rend() using ld = long double; using ll = long long; using ull = unsigned long long; using pii = pair; using pll = pair; using pdd = pair; template using V = vector; template using VV = V>; template using P = pair; template using M = map; template using S = set; template using UM = unordered_map; template using PQ = priority_queue, greater>; template using rPQ = priority_queue, less>; template vector make_vec(size_t n, T a) { return vector(n, a); } template auto make_vec(size_t n, Ts... ts) { return vector(n, make_vec(ts...)); } template ostream& operator << (ostream& os, const pair v){os << "(" << v.first << ", " << v.second << ")"; return os;} template ostream& operator<<(ostream &os, const vector &v) { for (auto &e : v) os << e << ' '; return os; } template ostream& operator<<(ostream& os, const vector> &v){ for(auto &e : v){os << e << "\n";} return os;} struct fast_ios { fast_ios(){ cin.tie(nullptr); ios::sync_with_stdio(false); cout << fixed << setprecision(20); }; } fast_ios_; template void UNIQUE(vector &x) {sort(ALL(x));x.erase(unique(ALL(x)), x.end());} template bool chmax(T &a, const T &b) { if (a bool chmin(T &a, const T &b) { if (a>b) { a=b; return 1; } return 0; } void fail() { cout << -1 << '\n'; exit(0); } inline int popcount(const int x) { return __builtin_popcount(x); } inline int popcount(const ll x) { return __builtin_popcountll(x); } template void debug(vector>&v){for(ll i=0;i void debug(vector&v){if(v.size()!=0)cerr< P divmod(T a, T b) {return make_pair(a/b, a%b);} const ll INF = (1ll<<62); // const ld EPS = 1e-10; // const ld PI = acos(-1.0); const ll mod = (int)1e9 + 7; //const ll mod = 998244353; ll dp[2][2010][2010]; int n; V a; ll cost(int l, int r, ll t) { if (l<0 || l>=n || r<0 || r>=n) return INF; return max(a[r], t + abs(l-r)); } ll sub(bool b, int l, int r) { if (l<0 || l>=n || r<0 || r>n) return INF; if (dp[b][l][r]>=0) return dp[b][l][r]; ll res = INF; if (!b) { chmin(res, cost(l-2, l-1, sub(0,l-1,r))); chmin(res, cost(r, l-1, sub(1,l-1,r))); } else { chmin(res, cost(l-1, r, sub(0,l,r+1))); chmin(res, cost(r+1, r, sub(1,l,r+1))); } dp[b][l][r] = res; // cout << b spa l spa r spa res << endl; return res; } void Main(){ cin >> n; a = V(n); rep(i,n) cin >> a[i]; rep(b,2) rep(i,n+10) rep(j, n+10) dp[b][i][j] = -1; dp[0][1][n] = a[0]; dp[1][0][n-1] = a[n-1]; ll ans = INF; rep(i,n) { chmin(ans, sub(0,i,i)); chmin(ans, sub(1,i,i)); } cout << ans << endl; } int main(void){ std::ifstream in("tmp_in"); if (TEST) { std::cin.rdbuf(in.rdbuf()); std::cout << std::fixed << std::setprecision(15); } else { std::cin.tie(nullptr); std::ios_base::sync_with_stdio(false); std::cout << std::fixed << std::setprecision(15); } Main(); }