#include #define all(x) (x).begin(), (x).end() typedef long long ll; #define MOD 1000000007 using namespace std; int main() { int n; cin >> n; vector a(n); for(int i = 0; i < n; i++) { cin >> a[i]; } set stl, str; for(int i = 1; i < n; i++) { str.insert(a[i]); } ll ans = LLONG_MAX; for(int i = 1; i < n - 1; i++) { stl.insert(a[i - 1]); str.erase(a[i]); auto x = stl.lower_bound(a[i]); auto y = str.lower_bound(a[i]); if(x != stl.end() && y != str.end()) { ans = min(ans, (*x) + (*y) + a[i]); } auto v = *stl.begin(); auto w = *str.begin(); if(v < a[i] && w < a[i]) { ans = min(ans, v + w + a[i]); } } if(ans < MOD) { cout << ans << endl; } else { cout << -1 << endl; } }