結果

問題 No.1067 #いろいろな色 / Red and Blue and more various colors (Middle)
ユーザー risujirohrisujiroh
提出日時 2020-05-29 22:04:44
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 540 ms / 2,000 ms
コード長 2,049 bytes
コンパイル時間 2,450 ms
コンパイル使用メモリ 206,456 KB
実行使用メモリ 144,128 KB
最終ジャッジ日時 2024-04-23 22:34:05
合計ジャッジ時間 7,062 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 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,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 333 ms
91,648 KB
testcase_12 AC 203 ms
56,064 KB
testcase_13 AC 464 ms
127,232 KB
testcase_14 AC 252 ms
71,296 KB
testcase_15 AC 101 ms
29,312 KB
testcase_16 AC 82 ms
23,168 KB
testcase_17 AC 17 ms
7,040 KB
testcase_18 AC 267 ms
74,240 KB
testcase_19 AC 279 ms
78,720 KB
testcase_20 AC 114 ms
31,360 KB
testcase_21 AC 536 ms
144,128 KB
testcase_22 AC 538 ms
144,128 KB
testcase_23 AC 540 ms
144,128 KB
testcase_24 AC 2 ms
6,944 KB
testcase_25 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#ifdef LOCAL
#include "debug.h"
#else
#define DEBUG(...)
#endif

template <class T, class Op = multiplies<T>>
constexpr T power(T a, long long n, Op op = Op(), T e = {1}) {
  assert(n >= 0);
  while (n) {
    if (n & 1) e = op(e, a);
    if (n >>= 1) a = op(a, a);
  }
  return e;
}

template <unsigned M> struct modular {
  using m = modular;
  static constexpr unsigned mod = M;
  unsigned v;
  modular(long long x = 0) : v((x %= mod) < 0 ? x + mod : x) {}
  m operator-() const { return m() -= *this; }
  m& operator+=(m b) { if ((int)(v += b.v - mod) < 0) v += mod; return *this; }
  m& operator-=(m b) { if ((int)(v -= b.v) < 0) v += mod; return *this; }
  m& operator*=(m b) { v = (uint64_t)v * b.v % mod; return *this; }
  m& operator/=(m b) { return *this *= power(b, mod - 2); }
  friend m operator+(m a, m b) { return a += b; }
  friend m operator-(m a, m b) { return a -= b; }
  friend m operator*(m a, m b) { return a *= b; }
  friend m operator/(m a, m b) { return a /= b; }
  friend bool operator==(m a, m b) { return a.v == b.v; }
};

using mint = modular<998244353>;

int main() {
  cin.tie(nullptr);
  ios::sync_with_stdio(false);
  int n, q;
  cin >> n >> q;
  vector<int> a(n);
  for (auto&& e : a) cin >> e;
  sort(begin(a), end(a));
  vector dp(n, vector<mint>(n + 1));
  dp[0][0] = 1;
  for (int i = 0; i < n; ++i) {
    vector<mint> ndp(n + 1);
    for (int x = 0; x <= i; ++x) {
      ndp[x + 1] += dp[0][x];
      ndp[x] += dp[0][x] * (a[i] - 1);
    }
    swap(dp[0], ndp);
  }
  for (int i = 0; i < n - 1; ++i) {
    dp[i + 1] = dp[i];
    for (int x = n; x; --x) {
      dp[i + 1][x - 1] -= dp[i + 1][x] * (a[i] - 1);
    }
    for (int x = 0; x < n; ++x) {
      dp[i + 1][x] = dp[i + 1][x + 1] * a[i];
    }
    dp[i + 1][n] = 0;
  }
  while (q--) {
    int l, r, p;
    cin >> l >> r >> p;
    --l;
    int res = 0;
    for (int x = l; x < r; ++x) {
      int i = upper_bound(begin(a), end(a), x) - begin(a);
      res ^= dp[i][p].v;
    }
    cout << res << '\n';
  }
}
0