結果

問題 No.803 Very Limited Xor Subset
ユーザー tokoharu_procontokoharu_procon
提出日時 2019-03-17 22:54:03
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 198 ms / 2,000 ms
コード長 6,416 bytes
コンパイル時間 2,011 ms
コンパイル使用メモリ 182,740 KB
実行使用メモリ 8,728 KB
最終ジャッジ日時 2023-09-22 09:12:52
合計ジャッジ時間 7,138 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 20 ms
8,592 KB
testcase_01 AC 18 ms
7,860 KB
testcase_02 AC 19 ms
7,412 KB
testcase_03 AC 19 ms
7,148 KB
testcase_04 AC 19 ms
7,676 KB
testcase_05 AC 19 ms
7,980 KB
testcase_06 AC 19 ms
7,920 KB
testcase_07 AC 19 ms
7,684 KB
testcase_08 AC 18 ms
7,592 KB
testcase_09 AC 19 ms
7,592 KB
testcase_10 AC 19 ms
7,504 KB
testcase_11 AC 19 ms
7,372 KB
testcase_12 AC 19 ms
7,264 KB
testcase_13 AC 19 ms
7,568 KB
testcase_14 AC 122 ms
7,412 KB
testcase_15 AC 134 ms
8,476 KB
testcase_16 AC 123 ms
8,584 KB
testcase_17 AC 135 ms
8,464 KB
testcase_18 AC 127 ms
7,152 KB
testcase_19 AC 122 ms
8,120 KB
testcase_20 AC 125 ms
7,792 KB
testcase_21 AC 114 ms
7,452 KB
testcase_22 AC 127 ms
7,640 KB
testcase_23 AC 174 ms
7,704 KB
testcase_24 AC 179 ms
7,644 KB
testcase_25 AC 187 ms
7,460 KB
testcase_26 AC 165 ms
7,904 KB
testcase_27 AC 155 ms
7,720 KB
testcase_28 AC 162 ms
7,452 KB
testcase_29 AC 146 ms
7,376 KB
testcase_30 AC 150 ms
8,456 KB
testcase_31 AC 198 ms
7,400 KB
testcase_32 AC 186 ms
7,576 KB
testcase_33 AC 183 ms
8,624 KB
testcase_34 AC 20 ms
7,316 KB
testcase_35 AC 68 ms
8,452 KB
testcase_36 AC 36 ms
6,888 KB
testcase_37 AC 48 ms
7,588 KB
testcase_38 AC 21 ms
8,516 KB
testcase_39 AC 21 ms
7,908 KB
testcase_40 AC 63 ms
7,664 KB
testcase_41 AC 85 ms
8,728 KB
testcase_42 AC 83 ms
7,700 KB
testcase_43 AC 65 ms
8,624 KB
testcase_44 AC 19 ms
7,152 KB
testcase_45 AC 18 ms
7,272 KB
testcase_46 AC 18 ms
7,672 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In instantiation of ‘auto exvector(const T&, SIZE_T ...) [with T = mint<1>; SIZE_T = {int, int}]’:
main.cpp:222:24:   required from here
main.cpp:57:37: 警告: narrowing conversion of ‘dims#0’ from ‘int’ to ‘long unsigned int’ [-Wnarrowing]
   57 |   std::vector<std::size_t> vec_dims{dims...};
      |                                     ^~~~
main.cpp:57:37: 警告: narrowing conversion of ‘dims#0’ from ‘int’ to ‘long unsigned int’ [-Wnarrowing]
main.cpp:57:37: 警告: narrowing conversion of ‘dims#1’ from ‘int’ to ‘long unsigned int’ [-Wnarrowing]
main.cpp:57:37: 警告: narrowing conversion of ‘dims#1’ from ‘int’ to ‘long unsigned int’ [-Wnarrowing]

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long LL;
typedef pair<LL, LL> PII;

// chmax, chmin
template <class T>
inline bool chmax(T& a, T b) {
  if (a < b) {
    a = b;
    return 1;
  }
  return 0;
}
template <class T>
inline bool chmin(T& a, T b) {
  if (a > b) {
    a = b;
    return 1;
  }
  return 0;
}

template <typename T>
function<T(T, T)> op_max = [](T a, T b) -> T { return max(a, b); };
template <typename T>
function<T(T, T)> op_min = [](T a, T b) -> T { return min(a, b); };

template <typename T>
function<T(T, T)> op_sum = [](T a, T b) -> T { return a + b; };

namespace detail {
template <typename T, std::size_t NDIMS>
struct vector_builder {
  using type = std::vector<typename vector_builder<T, NDIMS - 1>::type>;

  static type make(std::vector<std::size_t> dims, const T& v = {}) {
    const auto vec = std::vector<T>(dims.empty() ? 0 : dims.back(), v);
    if (!dims.empty()) dims.pop_back();
    return vector_builder<std::vector<T>, NDIMS - 1>::make(dims, vec);
  }
};

template <typename T>
struct vector_builder<T, 1> {
  using type = std::vector<T>;

  static type make(std::vector<std::size_t> dims, const T& v = {}) {
    return type(dims.empty() ? 0 : dims.back(), v);
  }
};
}  // namespace detail

template <typename T, typename... SIZE_T>
auto exvector(const T& v, SIZE_T... dims) {
  static_assert(sizeof...(dims) != 0, "invalid dimension");
  std::vector<std::size_t> vec_dims{dims...};
  return detail::vector_builder<T, sizeof...(dims)>::make(vec_dims, v);
}

using namespace std;
//********************  dumps ************************//

template <typename T>
void dump(const T& data, vector<int>& iter) {
  cout << data << " ";
}
template <typename T>
void dump(const vector<T>& data, vector<int>& iter) {
  for (auto elem : data) dump(elem, iter);
  cout << endl;
}

template <typename T>
void dump(const vector<vector<T>>& data, vector<int>& iter) {
  for (auto elem : iter) {
    cout << "[" << elem << "]";
  }
  cout << endl;
  for (int i = 0; i < data.size(); i++) {
    iter.push_back(i);
    dump(data[i], iter);
    iter.pop_back();
  }
  cout << endl;
}

template <typename T>
void dump(const vector<T>& data, int dummy) {
  for (int i = 0; i < data.size(); i++) {
    cout << "[" << i << "] " << data[i] << endl;
  }
}
template <typename T>
void dump(const T& data) {  // T : data, U = base type val.
  vector<int> iter;
  dump(data, iter);
}
///////////////////////////////////////////////

long long mul(long long a, long long b, const long long MOD) {
  return b ? (mul(a * 2, b / 2, MOD) + (b & 1 ? a : 0)) % MOD : 0;
}

long long bpow(long long a, long long b, const long long MOD) {
  return (b ? bpow(a * a % MOD, b / 2, MOD) * (b & 1 ? a : 1) : 1) % MOD;
}

long long inv(long long a, const long long MOD) {
  return bpow(a, MOD - 2, MOD);
}

vector<long long> MODS = {1000000007};
template <int kind = 0>
class mint {
 public:
  long long v;

  mint() : v(0) {}
  mint(long long v) : v((v % MODS[kind] + MODS[kind]) % MODS[kind]) {}
  long long get_mod() { return MODS[kind]; }
  long long get_val() { return v; }
};

template <int kind>
ostream& operator<<(ostream& os, const mint<kind>& x) {
  return os << x.v;
}

template <int kind>
bool operator==(mint<kind>& a, mint<kind> b) {
  return a.v == b.v;
}

template <int kind>
mint<kind>& operator+=(mint<kind>& a, mint<kind> b) {
  return a = a.v + b.v;
}
template <int kind>
mint<kind>& operator-=(mint<kind>& a, mint<kind> b) {
  return a = a.v - b.v;
}
template <int kind>
mint<kind>& operator*=(mint<kind>& a, mint<kind> b) {
  return a = a.v * b.v;
}
template <int kind>
mint<kind>& operator/=(mint<kind>& a, mint<kind> b) {
  return a = a.v * inv(b.v, a.get_mod());
}
template <int kind>
mint<kind> operator+(mint<kind> a, mint<kind> b) {
  return a += b;
}
template <int kind>
mint<kind> operator-(mint<kind> a, mint<kind> b) {
  return a -= b;
}
template <int kind>
mint<kind> operator*(mint<kind> a, mint<kind> b) {
  return a *= b;
}
template <int kind>
mint<kind> operator/(mint<kind> a, mint<kind> b) {
  return a /= b;
}
template <int kind>
mint<kind>& operator+=(mint<kind>& a, long long b) {
  return a = a.v + b;
}
template <int kind>
mint<kind>& operator-=(mint<kind>& a, long long b) {
  return a = a.v - b;
}
template <int kind>
mint<kind>& operator*=(mint<kind>& a, long long b) {
  return a = a.v * b;
}
template <int kind>
mint<kind>& operator/=(mint<kind>& a, long long b) {
  return a = a.v * inv(b, a.get_mod());
}
template <int kind>
mint<kind> operator+(mint<kind> a, long long b) {
  return a += b;
}
template <int kind>
mint<kind> operator-(mint<kind> a, long long b) {
  return a -= b;
}
template <int kind>
mint<kind> operator*(mint<kind> a, long long b) {
  return a *= b;
}
template <int kind>
mint<kind> operator/(mint<kind> a, long long b) {
  return a /= b;
}

vector<mint<>> kaijo;
void init() {
  kaijo.push_back(mint<>(1));
  for (int i = 1; i <= 400000; i++) {
    kaijo.push_back(kaijo.back() * i);
  }
}

mint<> comb(LL N, LL K) {
  if (K < 0) return mint<>(0);
  if (K > N) return mint<>(0);
  return kaijo[N] / kaijo[N - K] / kaijo[K];
}

int main() {
  init();
  MODS.push_back(2);
  mint<> ans;
  int N, M, X;
  cin >> N >> M >> X;

  int base = 30;
  auto table = exvector(mint<1>(0), N + 1, M + base);
  for (int i = 0; i <= N; i++) {
    int v;
    if (i < N)
      cin >> v;
    else
      v = X;
    for (int j = 0; j < base; j++) {
      table[i][j] = (0 < ((1 << j) & v));
    }
  }
  for (int j = base; j < M + base; j++) {
    int t, l, r;
    cin >> t >> l >> r;
    l--;
    r--;
    for (int i = l; i <= r; i++) {
      table[i][j] = 1;
    }
    table[N][j] = t;
  }
  mint<1> one = mint<1>(1);
  mint<1> zero = mint<1>(0);

  int piv = 0;
  vector<PII> pivs;
  for (int j = 0; j < M + base; j++) {
    if (piv == N) continue;
    int pos = -1;
    for (int i = piv; i < N; i++) {
      if (table[i][j] == one) {
        pos = i;
      }
    }
    if (pos == -1) continue;
    swap(table[pos], table[piv]);
    for (int i = 0; i <= N; i++) {
      if (i == piv) continue;
      if (table[i][j] == zero) continue;
      for (int j = 0; j < M + base; j++) {
        table[i][j] += table[piv][j];
      }
    }
    pivs.push_back(PII(j, piv));
    piv++;
  }
  ans = 1;
  for (int j = 0; j < M + base; j++) {
    if (table[N][j] == one) ans = 0;
  }
  for (int i = piv; i < N; i++) ans *= 2;

  cout << ans << endl;
  return 0;
}
0