結果

問題 No.1765 While Shining
ユーザー yasuwoyasuwo
提出日時 2021-11-26 22:57:41
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 17 ms / 2,000 ms
コード長 1,095 bytes
コンパイル時間 4,766 ms
コンパイル使用メモリ 308,372 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-29 18:23:31
合計ジャッジ時間 6,167 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 11 ms
6,940 KB
testcase_10 AC 14 ms
6,940 KB
testcase_11 AC 12 ms
6,944 KB
testcase_12 AC 14 ms
6,940 KB
testcase_13 AC 11 ms
6,940 KB
testcase_14 AC 15 ms
6,944 KB
testcase_15 AC 15 ms
6,944 KB
testcase_16 AC 14 ms
6,940 KB
testcase_17 AC 14 ms
6,940 KB
testcase_18 AC 17 ms
6,940 KB
testcase_19 AC 16 ms
6,940 KB
testcase_20 AC 14 ms
6,944 KB
testcase_21 AC 14 ms
6,944 KB
testcase_22 AC 15 ms
6,944 KB
testcase_23 AC 15 ms
6,940 KB
testcase_24 AC 13 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#line 1 "main.cpp"
#include <bits/stdc++.h>
#include <atcoder/all>
// #include "library/templates/template.cpp"
using namespace atcoder;
using namespace std;
using ll = long long int;
using ull = unsigned long long int;
using ld = long double;
using pii = pair<int, int>;
using pll = pair<ll, ll>;

long long solve(int N, const std::vector<int> &A)
{
    vector<int> dp(N + 1, 0);
    vector<int> cnt(N + 1, 0);
    for (int i = 0; i < N; i++)
    {
        if (A[i])
        {
            cnt[i]++;
        }
        if (i && A[i] != A[i - 1])
        {
            cnt[i] += cnt[i - 1];
            dp[i] += cnt[i - 1];
        }
        else if (i)
        {
            dp[i] += cnt[i - 1];
        }
    }
    ll res = accumulate(dp.begin(), dp.end(), 0LL);

    return res;
}

int main()
{
    std::ios_base::sync_with_stdio(false);
    std::cin.tie(nullptr);
    std::cout.tie(nullptr);
    int N;
    std::cin >> N;
    std::vector<int> A(N);
    for (int i = 0; i < N; ++i)
    {
        std::cin >> A[i];
    }
    auto ans = solve(N, A);
    std::cout << ans << '\n';
    return 0;
}
0