#include #include #include using namespace std; typedef long long int ll; int l[100100]; int r[100100]; int main(){ cin.tie(nullptr); ios::sync_with_stdio(false); int n; cin >> n; vector a(n); vector v; for(int i=0;i> a[i]; } for(int i=0;i1){ l[i]+=l[i-2]; } } for(int i=m-1;i>=0;i--){ r[i]=v[i]; if(i=0;i--){ int k=r[i]+(i>2?l[i-3]:0); ans=max(ans,k); } cout << ans << endl; }