結果

問題 No.921 ずんだアロー
ユーザー arknavearknave
提出日時 2019-11-08 21:38:27
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,000 bytes
コンパイル時間 1,541 ms
コンパイル使用メモリ 167,768 KB
実行使用メモリ 4,516 KB
最終ジャッジ日時 2023-10-13 03:38:52
合計ジャッジ時間 2,876 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,352 KB
testcase_01 AC 2 ms
4,352 KB
testcase_02 AC 2 ms
4,348 KB
testcase_03 AC 2 ms
4,348 KB
testcase_04 AC 1 ms
4,352 KB
testcase_05 AC 1 ms
4,352 KB
testcase_06 AC 2 ms
4,352 KB
testcase_07 AC 1 ms
4,352 KB
testcase_08 AC 2 ms
4,348 KB
testcase_09 AC 2 ms
4,348 KB
testcase_10 AC 10 ms
4,352 KB
testcase_11 AC 11 ms
4,352 KB
testcase_12 AC 4 ms
4,348 KB
testcase_13 AC 9 ms
4,352 KB
testcase_14 AC 9 ms
4,348 KB
testcase_15 AC 6 ms
4,352 KB
testcase_16 AC 2 ms
4,348 KB
testcase_17 AC 10 ms
4,348 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 11 ms
4,516 KB
testcase_24 AC 10 ms
4,348 KB
権限があれば一括ダウンロードができます

ソースコード

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