test/yosupo-judge/matrix_product/main.test.cpp
Depends on
Code
#define PROBLEM "https://judge.yosupo.jp/problem/matrix_product"
#include <iostream>
#include "Mylib/IO/input_vector.cpp"
#include "Mylib/IO/join.cpp"
#include "Mylib/LinearAlgebra/matrix.cpp"
#include "Mylib/Number/Mint/mint.cpp"
namespace hl = haar_lib;
using mint = hl::modint<998244353>;
int main() {
std::cin.tie(0);
std::ios::sync_with_stdio(false);
int N, M, K;
std::cin >> N >> M >> K;
auto a = hl::matrix(hl::input_vector<mint>(N, M));
auto b = hl::matrix(hl::input_vector<mint>(M, K));
auto c = a * b;
for (int i = 0; i < N; ++i) {
std::cout << hl::join(c[i].begin(), c[i].end()) << "\n";
}
return 0;
}
#line 1 "test/yosupo-judge/matrix_product/main.test.cpp"
#define PROBLEM "https://judge.yosupo.jp/problem/matrix_product"
#include <iostream>
#line 3 "Mylib/IO/input_vector.cpp"
#include <vector>
namespace haar_lib {
template <typename T>
std::vector<T> input_vector(int N) {
std::vector<T> ret(N);
for (int i = 0; i < N; ++i) std::cin >> ret[i];
return ret;
}
template <typename T>
std::vector<std::vector<T>> input_vector(int N, int M) {
std::vector<std::vector<T>> ret(N);
for (int i = 0; i < N; ++i) ret[i] = input_vector<T>(M);
return ret;
}
} // namespace haar_lib
#line 3 "Mylib/IO/join.cpp"
#include <sstream>
#include <string>
namespace haar_lib {
template <typename Iter>
std::string join(Iter first, Iter last, std::string delim = " ") {
std::stringstream s;
for (auto it = first; it != last; ++it) {
if (it != first) s << delim;
s << *it;
}
return s.str();
}
} // namespace haar_lib
#line 2 "Mylib/LinearAlgebra/matrix.cpp"
#include <cassert>
#line 4 "Mylib/LinearAlgebra/matrix.cpp"
namespace haar_lib {
template <typename T>
class matrix {
std::vector<std::vector<T>> data_;
size_t R_, C_;
public:
matrix() : data_(), R_(0), C_(0) {}
matrix(size_t R, size_t C, T value = T()) : data_(R, std::vector<T>(C, value)), R_(R), C_(C) {}
matrix(std::vector<std::vector<T>> data) : data_(data), R_(data.size()), C_(data[0].size()) {}
const auto &operator[](size_t i) const {
return data_[i];
}
friend auto operator*(const matrix<T> &a, const matrix<T> &b) {
assert(a.C_ == b.R_);
matrix ret(a.R_, b.C_);
for (size_t i = 0; i < a.R_; ++i) {
for (size_t k = 0; k < a.C_; ++k) {
for (size_t j = 0; j < b.C_; ++j) {
ret.data_[i][j] += a.data_[i][k] * b.data_[k][j];
}
}
}
return ret;
}
};
} // namespace haar_lib
#line 3 "Mylib/Number/Mint/mint.cpp"
#include <utility>
namespace haar_lib {
template <int32_t M>
class modint {
uint32_t val_;
public:
constexpr static auto mod() { return M; }
constexpr modint() : val_(0) {}
constexpr modint(int64_t n) {
if (n >= M)
val_ = n % M;
else if (n < 0)
val_ = n % M + M;
else
val_ = n;
}
constexpr auto &operator=(const modint &a) {
val_ = a.val_;
return *this;
}
constexpr auto &operator+=(const modint &a) {
if (val_ + a.val_ >= M)
val_ = (uint64_t) val_ + a.val_ - M;
else
val_ += a.val_;
return *this;
}
constexpr auto &operator-=(const modint &a) {
if (val_ < a.val_) val_ += M;
val_ -= a.val_;
return *this;
}
constexpr auto &operator*=(const modint &a) {
val_ = (uint64_t) val_ * a.val_ % M;
return *this;
}
constexpr auto &operator/=(const modint &a) {
val_ = (uint64_t) val_ * a.inv().val_ % M;
return *this;
}
constexpr auto operator+(const modint &a) const { return modint(*this) += a; }
constexpr auto operator-(const modint &a) const { return modint(*this) -= a; }
constexpr auto operator*(const modint &a) const { return modint(*this) *= a; }
constexpr auto operator/(const modint &a) const { return modint(*this) /= a; }
constexpr bool operator==(const modint &a) const { return val_ == a.val_; }
constexpr bool operator!=(const modint &a) const { return val_ != a.val_; }
constexpr auto &operator++() {
*this += 1;
return *this;
}
constexpr auto &operator--() {
*this -= 1;
return *this;
}
constexpr auto operator++(int) {
auto t = *this;
*this += 1;
return t;
}
constexpr auto operator--(int) {
auto t = *this;
*this -= 1;
return t;
}
constexpr static modint pow(int64_t n, int64_t p) {
if (p < 0) return pow(n, -p).inv();
int64_t ret = 1, e = n % M;
for (; p; (e *= e) %= M, p >>= 1)
if (p & 1) (ret *= e) %= M;
return ret;
}
constexpr static modint inv(int64_t a) {
int64_t b = M, u = 1, v = 0;
while (b) {
int64_t t = a / b;
a -= t * b;
std::swap(a, b);
u -= t * v;
std::swap(u, v);
}
u %= M;
if (u < 0) u += M;
return u;
}
constexpr static auto frac(int64_t a, int64_t b) { return modint(a) / modint(b); }
constexpr auto pow(int64_t p) const { return pow(val_, p); }
constexpr auto inv() const { return inv(val_); }
friend constexpr auto operator-(const modint &a) { return modint(M - a.val_); }
friend constexpr auto operator+(int64_t a, const modint &b) { return modint(a) + b; }
friend constexpr auto operator-(int64_t a, const modint &b) { return modint(a) - b; }
friend constexpr auto operator*(int64_t a, const modint &b) { return modint(a) * b; }
friend constexpr auto operator/(int64_t a, const modint &b) { return modint(a) / b; }
friend std::istream &operator>>(std::istream &s, modint &a) {
s >> a.val_;
return s;
}
friend std::ostream &operator<<(std::ostream &s, const modint &a) {
s << a.val_;
return s;
}
template <int N>
static auto div() {
static auto value = inv(N);
return value;
}
explicit operator int32_t() const noexcept { return val_; }
explicit operator int64_t() const noexcept { return val_; }
};
} // namespace haar_lib
#line 9 "test/yosupo-judge/matrix_product/main.test.cpp"
namespace hl = haar_lib;
using mint = hl::modint<998244353>;
int main() {
std::cin.tie(0);
std::ios::sync_with_stdio(false);
int N, M, K;
std::cin >> N >> M >> K;
auto a = hl::matrix(hl::input_vector<mint>(N, M));
auto b = hl::matrix(hl::input_vector<mint>(M, K));
auto c = a * b;
for (int i = 0; i < N; ++i) {
std::cout << hl::join(c[i].begin(), c[i].end()) << "\n";
}
return 0;
}
Back to top page