CP-Algorithms Library

This documentation is automatically generated by competitive-verifier/competitive-verifier

View the Project on GitHub cp-algorithms/cp-algorithms-aux

:heavy_check_mark: Matrix Product (Mod 2) (verify/structures/bitpack/prod_mod_2.test.cpp)

Depends on

Code


// @brief Matrix Product (Mod 2)
#define PROBLEM "https://judge.yosupo.jp/problem/matrix_product_mod_2"
#pragma GCC optimize("Ofast,unroll-loops")
#pragma GCC target("tune=native")
#include "cp-algo/structures/bitpack.hpp"
#include <bits/stdc++.h>

using namespace std;
using cp_algo::structures::bitpack;

const int maxn = 1 << 12;
bitpack<maxn> a[maxn], b[maxn], c[maxn];

void solve() {
    int n, m, k;
    cin >> n >> m >> k;
    string row;
    for(int i = 0; i < n; i++) {
        cin >> row;
        a[i] = row;
    }
    for(int i = 0; i < m; i++) {
        cin >> row;
        b[i] = row;
    }
    for(int i = 0; i < n; i++) {
        for(int j = 0; j < m; j++) {
            if(a[i][j]) {
                c[i] ^= b[j];
            }
        }
    }
    for(int i = 0; i < n; i++) {
        row = c[i].to_string().substr(0, k);
        cout << row << "\n";
    }
}

signed main() {
    //freopen("input.txt", "r", stdin);
    ios::sync_with_stdio(0);
    cin.tie(0);
    int t = 1;
    while(t--) {
        solve();
    }
}
#line 1 "verify/structures/bitpack/prod_mod_2.test.cpp"

// @brief Matrix Product (Mod 2)
#define PROBLEM "https://judge.yosupo.jp/problem/matrix_product_mod_2"
#pragma GCC optimize("Ofast,unroll-loops")
#pragma GCC target("tune=native")
#line 1 "cp-algo/structures/bitpack.hpp"



#line 1 "cp-algo/structures/bit_array.hpp"


#line 1 "cp-algo/util/bit.hpp"


#include <immintrin.h>
#include <cstdint>
#include <array>
#include <bit>
namespace cp_algo {
    template<typename Uint>
    constexpr size_t bit_width = sizeof(Uint) * 8;

    size_t order_of_bit(auto x, size_t k) {
        return k ? std::popcount(x << (bit_width<decltype(x)> - k)) : 0;
    }
    [[gnu::target("bmi2")]]
    size_t kth_set_bit(uint64_t x, size_t k) {
        return std::countr_zero(_pdep_u64(1ULL << k, x));
    }
    template<int fl = 0>
    void with_bit_floor(size_t n, auto &&callback) {
        if constexpr (fl >= 63) {
            return;
        } else if (n >> (fl + 1)) {
            with_bit_floor<fl + 1>(n, callback);
        } else {
            callback.template operator()<1ULL << fl>();
        }
    }
}

#line 4 "cp-algo/structures/bit_array.hpp"
namespace cp_algo::structures {
    template<size_t N, typename Uint = uint64_t>
    struct bit_array {
        static constexpr size_t width = bit_width<Uint>;
        static constexpr size_t blocks = N / width + 1;
        std::array<Uint, blocks> data = {};

        uint64_t word(size_t x) const {
            return data[x];
        }
        void set(size_t x) {
            data[x / width] |= 1ULL << (x % width);
        }
        void flip(size_t x) {
            data[x / width] ^= 1ULL << (x % width);
        }
        bool test(size_t x) const {
            return (data[x / width] >> (x % width)) & 1;
        }
        bool operator[](size_t x) const {
            return test(x);
        }
    };
}

#line 6 "cp-algo/structures/bitpack.hpp"
#include <cstddef>
#include <string>
#line 9 "cp-algo/structures/bitpack.hpp"
namespace cp_algo::structures {
    template<size_t n, typename Int = uint64_t>
    struct bitpack: bit_array<n, Int> {
        using Base = bit_array<n, Int>;
        using Base::width, Base::blocks, Base::data;
        auto operator <=> (bitpack const& t) const = default;

        bitpack() {}
        bitpack(std::string bits) {
            size_t rem = size(bits) % width;
            if(rem) {
                bits += std::string(width - rem, '0');
            }
            for(size_t i = 0, pos = 0; pos < size(bits); i++, pos += width) {
                for(size_t j = width; j; j--) {
                    data[i] *= 2;
                    data[i] ^= bits[pos + j - 1] == '1';
                }
            }
        }

        bitpack& xor_hint(bitpack const& t, size_t hint) {
            for(size_t i = hint / width; i < blocks; i++) {
                data[i] ^= t.data[i];
            }
            return *this;
        }
        bitpack& operator ^= (bitpack const& t) {
            return xor_hint(t, 0);
        }
        bitpack operator ^ (bitpack const& t) const {
            return bitpack(*this) ^= t;
        }

        std::string to_string() const {
            std::string res(blocks * width, '0');
            for(size_t i = 0, pos = 0; i < blocks; i++, pos += width) {
                Int block = data[i];
                for(size_t j = 0; j < width; j++) {
                    res[pos + j] = '0' + block % 2;
                    block /= 2;
                }
            }
            res.resize(n);
            return res;
        }

        size_t ctz() const {
            size_t res = 0;
            size_t i = 0;
            while(i < blocks && data[i] == 0) {
                res += width;
                i++;
            }
            if(i < blocks) {
                res += std::countr_zero(data[i]);
            }
            return std::min(res, n);
        }
    };
}

#line 7 "verify/structures/bitpack/prod_mod_2.test.cpp"
#include <bits/stdc++.h>

using namespace std;
using cp_algo::structures::bitpack;

const int maxn = 1 << 12;
bitpack<maxn> a[maxn], b[maxn], c[maxn];

void solve() {
    int n, m, k;
    cin >> n >> m >> k;
    string row;
    for(int i = 0; i < n; i++) {
        cin >> row;
        a[i] = row;
    }
    for(int i = 0; i < m; i++) {
        cin >> row;
        b[i] = row;
    }
    for(int i = 0; i < n; i++) {
        for(int j = 0; j < m; j++) {
            if(a[i][j]) {
                c[i] ^= b[j];
            }
        }
    }
    for(int i = 0; i < n; i++) {
        row = c[i].to_string().substr(0, k);
        cout << row << "\n";
    }
}

signed main() {
    //freopen("input.txt", "r", stdin);
    ios::sync_with_stdio(0);
    cin.tie(0);
    int t = 1;
    while(t--) {
        solve();
    }
}

Test cases

Env Name Status Elapsed Memory
g++ example_00 :heavy_check_mark: AC 8 ms 10 MB
g++ example_01 :heavy_check_mark: AC 6 ms 10 MB
g++ example_02 :heavy_check_mark: AC 6 ms 10 MB
g++ many_1_00 :heavy_check_mark: AC 249 ms 10 MB
g++ many_1_01 :heavy_check_mark: AC 249 ms 10 MB
g++ max_random_00 :heavy_check_mark: AC 226 ms 10 MB
g++ max_random_01 :heavy_check_mark: AC 232 ms 10 MB
g++ max_random_02 :heavy_check_mark: AC 224 ms 10 MB
g++ middle_00 :heavy_check_mark: AC 11 ms 10 MB
g++ middle_01 :heavy_check_mark: AC 8 ms 10 MB
g++ middle_02 :heavy_check_mark: AC 7 ms 10 MB
g++ middle_03 :heavy_check_mark: AC 7 ms 10 MB
g++ middle_04 :heavy_check_mark: AC 13 ms 10 MB
g++ random_00 :heavy_check_mark: AC 132 ms 10 MB
g++ random_01 :heavy_check_mark: AC 113 ms 10 MB
g++ random_02 :heavy_check_mark: AC 106 ms 10 MB
g++ small_00 :heavy_check_mark: AC 7 ms 10 MB
g++ small_01 :heavy_check_mark: AC 7 ms 10 MB
g++ small_02 :heavy_check_mark: AC 7 ms 10 MB
g++ small_03 :heavy_check_mark: AC 7 ms 10 MB
g++ small_04 :heavy_check_mark: AC 7 ms 10 MB
g++ small_05 :heavy_check_mark: AC 7 ms 10 MB
g++ small_06 :heavy_check_mark: AC 7 ms 10 MB
g++ small_07 :heavy_check_mark: AC 8 ms 10 MB
g++ small_08 :heavy_check_mark: AC 7 ms 10 MB
g++ small_09 :heavy_check_mark: AC 7 ms 10 MB
Back to top page