結果

問題 No.921 ずんだアロー
ユーザー eSeFeSeF
提出日時 2019-12-02 18:33:26
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 30 ms / 2,000 ms
コード長 599 bytes
コンパイル時間 2,106 ms
コンパイル使用メモリ 200,104 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-24 14:48:46
合計ジャッジ時間 3,793 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 2 ms
6,820 KB
testcase_10 AC 27 ms
6,820 KB
testcase_11 AC 30 ms
6,816 KB
testcase_12 AC 8 ms
6,820 KB
testcase_13 AC 21 ms
6,820 KB
testcase_14 AC 23 ms
6,816 KB
testcase_15 AC 15 ms
6,816 KB
testcase_16 AC 4 ms
6,816 KB
testcase_17 AC 23 ms
6,816 KB
testcase_18 AC 28 ms
6,816 KB
testcase_19 AC 29 ms
6,816 KB
testcase_20 AC 29 ms
6,816 KB
testcase_21 AC 28 ms
6,816 KB
testcase_22 AC 29 ms
6,816 KB
testcase_23 AC 27 ms
6,816 KB
testcase_24 AC 28 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i=0;i<n;i++)
#define MOD (int)1e9+7
#define EPS 1e-8
#define INF 1e9+10
#define INFL 1e18
typedef long long ll;
using namespace std;
const int MAX_N = (int)1e5+10;
int A[MAX_N];
ll dp[MAX_N][2];
int main()
{
  int N;
  cin >> N;
  rep(i,N){
      cin >> A[i];
  }
  dp[0][0]=1;
  dp[0][1]=0;
  for(int i=1;i<N;i++){
      if(A[i]==A[i-1]){
          dp[i][0]=max(dp[i-1][0]+1,dp[i-1][1]+1);
      }
      else{
          dp[i][0]=dp[i-1][1]+1;
      }

      dp[i][1]=max(dp[i-1][0],dp[i-1][1]);
  }

  cout << max(dp[N-1][0],dp[N-1][1]) << endl;
}
0