結果

問題 No.921 ずんだアロー
ユーザー arknave
提出日時 2019-11-08 21:38:27
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 1,000 bytes
コンパイル時間 1,639 ms
コンパイル使用メモリ 169,864 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-15 01:18:33
合計ジャッジ時間 2,692 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 17 WA * 5
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

#define all(x) begin(x), end(x)

using ll = long long;
using ld = long double;
using pii = pair<int, int>;
using vi = vector<int>;

int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(0); cout.tie(0);

    int n;
    cin >> n;
    vi a(n);

    for (auto& x : a) {
        cin >> x;
    }

    // Size of the i-th mochi is A[i]
    vector<int> b;
    int last_val = -1;
    int last_count = 0;
    for (int i = 0; i < n; ++i) {
        if (a[i] == last_val) {
            ++last_count;
        } else {
            if (last_count > 0) {
                b.push_back(last_count);
            }

            last_val = a[i];
            last_count = 1;
        }
    }

    if (last_count > 0) {
        b.push_back(last_count);
    }

    vi dp(b.size() + 1, 0);
    dp[1] = b[0];
    for (int i = 1; i < b.size(); ++i) {
        dp[i + 1] = max(b[i] + dp[i - 1], dp[i]);
    }

    cout << *max_element(all(dp)) << '\n';
    
    return 0;
}
0