#include #include #include #include #include #include #include #include #include #include #include #include #define REP(i, n) for(int i=0;i void print(const T &value) { std::cout << value << std::endl; } void yesno(bool a) { if (a)cout << "yes" << endl; else cout << "no" << endl; } void YesNo(bool a) { if (a)cout << "Yes" << endl; else cout << "No" << endl; } void YESNO(bool a) { if (a)cout << "YES" << endl; else cout << "NO" << endl; } typedef long long ll; typedef unsigned long ul; typedef long double ld; template inline bool chmin(T &a, T b) { if (a > b) { a = b; return true; } return false; } template inline bool chmax(T &a, T b) { if (a < b) { a = b; return true; } return false; } ll INF = 10000000; ll mod = 1000000007;//10^9+7 int dx[8] = {-1, 0, 0, 1, -1, -1, 1, 1}; int dy[8] = {0, -1, 1, 0, -1, 1, -1, 1}; using Graph = vector>;//隣接リスト:G[i]にはiと隣接する頂点が入るよ。 using P = pair;//BFSで利用。queueに入れる。 using PP = pair; //dijkstraで利用,priority_queueに入れる。 using p_queue = priority_queue, greater()>; //struct edge{int to, cost}; void factorization(int N, map &Prime) { int a = 2; while (a * a <= N) { if (N % a == 0) { N /= a; if (Prime.count(a)) { Prime[a] += 1; } else { Prime[a] = 1; } } else { a++; } } if (N != 1) { Prime[N] = 1; } } //番号ズレ注意!! int main() { int N; cin >> N; int V[N]; REP(i, N) { cin >> V[i]; } int dp[N + 1][2]; REP(i,N+1){REP(j,2){dp[i][j]=0;}} REP(i, N) { chmax(dp[i + 1][0], dp[i][1]); chmax(dp[i + 1][0], dp[i][0]); chmax(dp[i + 1][1], dp[i][0] + V[i]); } print(max(dp[N][0], dp[N][1])); }