結果
問題 |
No.45 回転寿司
|
ユーザー |
![]() |
提出日時 | 2019-07-25 11:02:21 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 666 bytes |
コンパイル時間 | 2,548 ms |
コンパイル使用メモリ | 165,580 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-02 05:58:52 |
合計ジャッジ時間 | 2,554 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 30 |
ソースコード
#include<bits/stdc++.h> using namespace std; typedef long long ll; #define FOR(i,n) for(int i=0;i<(n);i++) #define MOD 1000000007 #define all(x) (x).begin(),(x).end() template<class T> inline bool chmax(T& a,T b){if(a<b){a=b;return 1;}return 0;} template<class T> inline bool chmin(T& a,T b){if(a>b){a=b;return 1;}return 0;} template<class T> inline T GCD(T a,T b){T c;while(b!=0){c=a%b;a=b;b=c;}return a;} template<class T> inline T LCM(T a,T b){return a/GCD(a,b)*b;} int main(){ int n; cin >> n; int v[1010]; FOR(i,n){ cin >> v[i+1]; } int dp[1010]={0}; dp[1]=v[1]; for(int i=2;i<=n;i++){ dp[i]=max(dp[i-1],dp[i-2]+v[i]); } cout << dp[n] << endl; }