結果
問題 | No.2171 OR Assignment |
ユーザー | suisen |
提出日時 | 2022-12-23 01:15:15 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 218 ms / 3,500 ms |
コード長 | 1,209 bytes |
コンパイル時間 | 1,160 ms |
コンパイル使用メモリ | 87,468 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-11-18 06:43:32 |
合計ジャッジ時間 | 4,704 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | AC | 2 ms
6,816 KB |
testcase_06 | AC | 1 ms
6,816 KB |
testcase_07 | AC | 2 ms
6,816 KB |
testcase_08 | AC | 2 ms
6,820 KB |
testcase_09 | AC | 2 ms
6,820 KB |
testcase_10 | AC | 2 ms
6,816 KB |
testcase_11 | AC | 1 ms
6,824 KB |
testcase_12 | AC | 145 ms
6,816 KB |
testcase_13 | AC | 146 ms
6,816 KB |
testcase_14 | AC | 145 ms
6,816 KB |
testcase_15 | AC | 28 ms
6,816 KB |
testcase_16 | AC | 36 ms
6,816 KB |
testcase_17 | AC | 40 ms
6,816 KB |
testcase_18 | AC | 86 ms
6,816 KB |
testcase_19 | AC | 76 ms
6,820 KB |
testcase_20 | AC | 100 ms
6,816 KB |
testcase_21 | AC | 102 ms
6,816 KB |
testcase_22 | AC | 120 ms
6,816 KB |
testcase_23 | AC | 215 ms
6,820 KB |
testcase_24 | AC | 197 ms
6,816 KB |
testcase_25 | AC | 188 ms
6,816 KB |
testcase_26 | AC | 164 ms
6,816 KB |
testcase_27 | AC | 146 ms
6,816 KB |
testcase_28 | AC | 147 ms
6,820 KB |
testcase_29 | AC | 172 ms
6,816 KB |
testcase_30 | AC | 218 ms
6,820 KB |
testcase_31 | AC | 120 ms
6,820 KB |
ソースコード
#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<int, L> last; last.fill(-1); std::vector<int> ppos; std::vector<mint> pd { 1 }; for (int i = 0; i < n; ++i) { std::vector<int> pos; for (int j = 0; j < L; ++j) { if ((a[i] >> j) & 1) { last[j] = i; } else if (last[j] >= 0) { pos.push_back(last[j]); } } std::sort(pos.begin(), pos.end()); pos.erase(std::unique(pos.begin(), pos.end()), pos.end()); pos.push_back(i); const int siz = pos.size(); std::vector<mint> dp(siz + 1); for (int k = 0, j = 0; k < siz; ++k) { while (j < int(ppos.size()) and ppos[j] <= pos[k]) ++j; dp[k + 1] = dp[k] + pd[j]; } pd.swap(dp); ppos.swap(pos); } std::cout << pd.back().val() << std::endl; return 0; }