結果
| 問題 | No.45 回転寿司 |
| ユーザー |
syu91637598
|
| 提出日時 | 2020-02-18 10:31:47 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 5,000 ms |
| コード長 | 485 bytes |
| コンパイル時間 | 1,617 ms |
| コンパイル使用メモリ | 170,656 KB |
| 実行使用メモリ | 6,824 KB |
| 最終ジャッジ日時 | 2024-10-06 15:24:59 |
| 合計ジャッジ時間 | 2,475 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 30 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
/*
*/
int main() {
int N;
cin >> N;
vector<int> V(N);
rep(i,N){
cin >> V[i];
}
vector<vector<int>> dp(N+10, vector<int>(2));
dp[0][1] = V[0];
dp[0][0] = 0;
for(int i = 0;i<N-1;i++){
dp[i+1][1] = dp[i][0] + V[i+1];
dp[i+1][0] = max(dp[i][1],dp[i][0]);
}
int ans = max(dp[N-1][1],dp[N-1][0]);
cout << ans << endl;
}
syu91637598