結果
問題 | No.921 ずんだアロー |
ユーザー | Rubikun |
提出日時 | 2019-11-08 21:30:02 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 31 ms / 2,000 ms |
コード長 | 497 bytes |
コンパイル時間 | 1,707 ms |
コンパイル使用メモリ | 169,364 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-15 01:12:56 |
合計ジャッジ時間 | 2,795 ms |
ジャッジサーバーID (参考情報) |
judge6 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 22 |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; #define all(x) (x).begin(),(x).end() const int mod=1000000007,MAX=1<<17,INF=1<<30; int main(){ int N;cin>>N; vector<ll> A(N); for(int i=0;i<N;i++){ cin>>A[i]; } vector<ll> dp(N+1,0); dp[1]=1; for(int i=2;i<=N;i++){ if(A[i-2]==A[i-1]){ dp[i]=max(dp[i-1]+1,dp[i-2]+1); }else{ dp[i]=max(dp[i-1],dp[i-2]+1); } } cout<<dp[N]<<endl; }