結果

問題 No.2171 OR Assignment
ユーザー suisensuisen
提出日時 2022-12-23 00:58:29
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 353 ms / 3,500 ms
コード長 1,364 bytes
コンパイル時間 1,058 ms
コンパイル使用メモリ 91,448 KB
実行使用メモリ 71,296 KB
最終ジャッジ日時 2024-04-29 05:50:37
合計ジャッジ時間 7,024 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 246 ms
53,040 KB
testcase_13 AC 244 ms
53,112 KB
testcase_14 AC 243 ms
53,172 KB
testcase_15 AC 55 ms
25,856 KB
testcase_16 AC 66 ms
26,184 KB
testcase_17 AC 90 ms
38,440 KB
testcase_18 AC 202 ms
65,776 KB
testcase_19 AC 168 ms
54,400 KB
testcase_20 AC 211 ms
65,920 KB
testcase_21 AC 218 ms
67,712 KB
testcase_22 AC 244 ms
69,760 KB
testcase_23 AC 347 ms
71,040 KB
testcase_24 AC 331 ms
70,528 KB
testcase_25 AC 308 ms
70,528 KB
testcase_26 AC 292 ms
70,528 KB
testcase_27 AC 268 ms
70,144 KB
testcase_28 AC 270 ms
70,272 KB
testcase_29 AC 297 ms
70,936 KB
testcase_30 AC 353 ms
71,296 KB
testcase_31 AC 237 ms
70,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <array>
#include <iostream>
#include <vector>

#include <atcoder/modint>

using mint = atcoder::modint998244353;

constexpr int L = 30;

int main() {
    std::ios::sync_with_stdio(false);
    std::cin.tie(nullptr);

    int n;
    std::cin >> n;

    std::vector<int> a(n);
    for (auto &&e : a) std::cin >> e;

    std::array<std::vector<int>, L> pos{};

    std::vector<std::vector<int>> pre(n);

    for (int i = 0; i < n; ++i) {
        for (int j = 0; j < L; ++j) {
            if ((a[i] >> j) & 1) {
                pos[j].push_back(i);
            } else if (pos[j].size()) {
                pre[i].push_back(pos[j].back());
            }
        }
        std::sort(pre[i].begin(), pre[i].end());
        pre[i].erase(std::unique(pre[i].begin(), pre[i].end()), pre[i].end());
        pre[i].push_back(i);
    }

    std::vector<std::vector<mint>> dp(n);
    dp[0].push_back(1);

    for (int i = 1; i < n; ++i) {
        int j = 0;
        mint sum = 0;
        for (int k = 0; k < int(pre[i].size()); ++k) {
            while (j < int(pre[i - 1].size()) and pre[i - 1][j] <= pre[i][k]) {
                sum += dp[i - 1][j++];
            }
            dp[i].push_back(sum);
        }
    }
    mint ans = std::accumulate(dp[n - 1].begin(), dp[n - 1].end(), mint(0));
    std::cout << ans.val() << std::endl;
    return 0;
}
0