結果
問題 | No.2825 Sum of Scores of Sets of Specified Sections |
ユーザー | 🦠みどりむし |
提出日時 | 2024-01-22 16:27:15 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,804 bytes |
コンパイル時間 | 1,316 ms |
コンパイル使用メモリ | 119,240 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-26 20:00:17 |
合計ジャッジ時間 | 3,742 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
ソースコード
#include <cassert> #include <iostream> #include <vector> #include <ranges> #include <atcoder/modint> using mint = atcoder::modint998244353; std::istream &operator>>(std::istream &is, mint &v) { int r; is >> r, v = r; return is; } std::ostream &operator<<(std::ostream &os, const mint &v) { return os << v.val(); } template<class ValueType> struct matrix { using size_type = std::ptrdiff_t; using value_type = ValueType; private: size_type _height, _width; std::vector<std::vector<value_type>> _data; size_type height() const { return this->_height; } size_type width() const { return this->_width; } public: matrix(const size_type n, const size_type m) : _height(n), _width(m), _data(n, std::vector<value_type>(m)) {} void resize(const size_type n, const size_type m) { this->_height = n, this->_width = m; this->_data.resize(n); for(auto& row : this->_data) row.resize(m); } static matrix identity(const size_type n) { matrix res(n, n); for(const size_type i : std::views::iota(0, n)) res[i][i] = 1; return res; } inline const std::vector<value_type> &operator[](const size_type p) const { return this->_data[p]; } inline std::vector<value_type> &operator[](const size_type p) { return this->_data[p]; } matrix &operator+=(const matrix &rhs) { const size_type n = this->height(), m = this->width(); assert(n == rhs.height() && m == rhs.width()); for(size_type i : std::views::iota(0, n)) { for(size_type j : std::views::iota(0, m)) { (*this)[i][j] += rhs[i][j]; } } return *this; } matrix &operator*=(const matrix &rhs) { const size_type n = this->height(), m = rhs._width, l = this->width(); assert(l == rhs._height); matrix product(n, m); for(size_type i : std::views::iota(0, n)) { for(size_type j : std::views::iota(0, m)) { for(size_type k : std::views::iota(0, l)) { product[i][j] += (*this)[i][k] * rhs[k][j]; } } } this->resize(n, m); this->_data = std::move(product._data); return *this; } value_type det() const { auto X = this->_data; value_type res = 1; for(const size_type i : std::views::iota(0, this->width())) { size_type pivot = {-1}; for(const size_type j : std::views::iota(i, this->width())) { if(X[j][i] != 0) pivot = j; } if(pivot == -1) return 0; if(i != pivot) { res *= -1; std::swap(X[i], X[pivot]); } res *= X[i][i]; const value_type inv = 1 / X[i][i]; for(const size_type j : std::views::iota(0, this->width())) { X[i][j] *= inv; } for(const size_type j : std::views::iota(i + 1, this->width())) { const value_type v = X[j][i]; for(const size_type k : std::views::iota(0, this->width())) { X[j][k] -= X[i][k] * v; } } } return res; } friend matrix operator+(matrix a, const matrix &b) { return a += b; } friend matrix operator*(matrix a, const matrix &b) { return a *= b; } friend std::istream &operator>>(std::istream &is, matrix &p) { for(auto &row : p._data) { for(auto &v : row) is >> v; } return is; } }; int main() { int n, m; std::cin >> n >> m; matrix<mint> A(n, m), B(m, n); std::cin >> A >> B; std::cout << (matrix<mint>::identity(n) + A * B).det() << "\n"; return 0; }