結果

問題 No.2990 Interval XOR
ユーザー noshi91noshi91
提出日時 2024-06-07 14:41:56
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,154 bytes
コンパイル時間 2,693 ms
コンパイル使用メモリ 207,660 KB
実行使用メモリ 19,744 KB
最終ジャッジ日時 2024-12-14 23:32:47
合計ジャッジ時間 48,907 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,644 KB
testcase_01 AC 2 ms
10,712 KB
testcase_02 AC 2 ms
10,276 KB
testcase_03 AC 2 ms
10,276 KB
testcase_04 AC 2 ms
13,644 KB
testcase_05 AC 2 ms
12,200 KB
testcase_06 AC 2 ms
13,640 KB
testcase_07 AC 2 ms
10,576 KB
testcase_08 AC 2 ms
13,640 KB
testcase_09 AC 2 ms
12,204 KB
testcase_10 AC 2 ms
13,640 KB
testcase_11 AC 2 ms
12,232 KB
testcase_12 AC 2 ms
13,764 KB
testcase_13 AC 6 ms
13,636 KB
testcase_14 AC 2 ms
13,640 KB
testcase_15 AC 10 ms
13,768 KB
testcase_16 AC 2 ms
13,632 KB
testcase_17 AC 5 ms
19,604 KB
testcase_18 AC 14 ms
13,632 KB
testcase_19 AC 3 ms
19,668 KB
testcase_20 AC 10 ms
13,772 KB
testcase_21 AC 3 ms
13,632 KB
testcase_22 AC 8 ms
13,632 KB
testcase_23 AC 3 ms
19,740 KB
testcase_24 AC 10 ms
13,636 KB
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#include <atcoder/modint>
using mint = atcoder::modint998244353;

template <class T, class F> void bitwise_transform(std::vector<T> &a, F f) {
  const int n = a.size();
  for (int w = 1; w < n; w *= 2) {
    for (int i = 0; i < n; i += w * 2) {
      for (int k = 0; k < w; k++) {
        f(a[i + k], a[i + w + k]);
      }
    }
  }
}

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

  int N, M;
  std::cin >> N >> M;
  std::vector<int> L(M), R(M);
  for (int i = 0; i < M; i++) {
    std::cin >> L[i] >> R[i];
  }

  std::vector<mint> ans(1 << N, 1);
  for (int i = 0; i < M; i++) {
    std::vector<mint> b(1 << N);
    for (int k = L[i]; k <= R[i]; k++) {
      b[k] += 1;
    }
    bitwise_transform(b, [](auto &x, auto &y) {
      mint t = x - y;
      x += y;
      y = t;
    });
    for (int k = 0; k < 1 << N; k++) {
      ans[k] *= b[k];
    }
  }

  bitwise_transform(ans, [](auto &x, auto &y) {
    mint t = x - y;
    x += y;
    y = t;
  });

  const mint scale = 1 / mint(1 << N);
  for (int i = 0; i < 1 << N; i++) {
    std::cout << (ans[i] * scale).val() << "\n";
  }

  return 0;
}
0