結果
問題 | No.1907 DETERMINATION |
ユーザー | ygussany |
提出日時 | 2022-04-15 23:17:14 |
言語 | C++17(clang) (17.0.6 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,933 bytes |
コンパイル時間 | 4,125 ms |
コンパイル使用メモリ | 131,184 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-07 04:00:00 |
合計ジャッジ時間 | 25,713 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 227 ms
5,376 KB |
testcase_08 | AC | 97 ms
5,376 KB |
testcase_09 | AC | 160 ms
5,376 KB |
testcase_10 | AC | 520 ms
5,376 KB |
testcase_11 | AC | 210 ms
5,376 KB |
testcase_12 | AC | 512 ms
5,376 KB |
testcase_13 | AC | 481 ms
5,376 KB |
testcase_14 | AC | 443 ms
5,376 KB |
testcase_15 | AC | 94 ms
5,376 KB |
testcase_16 | AC | 39 ms
5,376 KB |
testcase_17 | AC | 490 ms
5,376 KB |
testcase_18 | AC | 343 ms
5,376 KB |
testcase_19 | AC | 14 ms
5,376 KB |
testcase_20 | AC | 487 ms
5,376 KB |
testcase_21 | AC | 54 ms
5,376 KB |
testcase_22 | AC | 220 ms
5,376 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 3 ms
5,376 KB |
testcase_26 | AC | 524 ms
5,376 KB |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | AC | 2 ms
5,376 KB |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | AC | 524 ms
5,376 KB |
testcase_34 | AC | 525 ms
5,376 KB |
testcase_35 | WA | - |
testcase_36 | AC | 2 ms
5,376 KB |
testcase_37 | WA | - |
testcase_38 | AC | 521 ms
5,376 KB |
testcase_39 | AC | 525 ms
5,376 KB |
testcase_40 | WA | - |
testcase_41 | AC | 525 ms
5,376 KB |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | AC | 521 ms
5,376 KB |
testcase_47 | AC | 522 ms
5,376 KB |
testcase_48 | AC | 523 ms
5,376 KB |
testcase_49 | AC | 549 ms
5,376 KB |
testcase_50 | AC | 525 ms
5,376 KB |
testcase_51 | AC | 523 ms
5,376 KB |
testcase_52 | AC | 2 ms
5,376 KB |
testcase_53 | AC | 339 ms
5,376 KB |
testcase_54 | AC | 337 ms
5,376 KB |
testcase_55 | AC | 2 ms
5,376 KB |
testcase_56 | AC | 342 ms
5,376 KB |
testcase_57 | AC | 337 ms
5,376 KB |
testcase_58 | AC | 415 ms
5,376 KB |
testcase_59 | AC | 355 ms
5,376 KB |
testcase_60 | AC | 357 ms
5,376 KB |
testcase_61 | AC | 432 ms
5,376 KB |
testcase_62 | AC | 358 ms
5,376 KB |
testcase_63 | AC | 523 ms
5,376 KB |
testcase_64 | AC | 2 ms
5,376 KB |
testcase_65 | AC | 1 ms
5,376 KB |
testcase_66 | AC | 2 ms
5,376 KB |
ソースコード
#include <algorithm> #include <cassert> #include <iostream> #include <numeric> #include <tuple> #include <type_traits> #include <utility> #include <vector> using namespace std; #include <atcoder/modint> using mint = atcoder::static_modint<998244353>; // Upper Hessenberg reduction of square matrices // Complexity: O(n^3) // Reference: // http://www.phys.uri.edu/nigh/NumRec/bookfpdf/f11-5.pdf template <class Tp> void hessenberg_reduction(std::vector<std::vector<Tp>> &M) { assert(M.size() == M[0].size()); const int N = M.size(); for (int r = 0; r < N - 2; r++) { int piv = -1; for (int j = r + 1; j < N; ++j) if (M[j][r] != 0) { piv = j; break; } if (piv < 0) continue; for (int i = 0; i < N; i++) std::swap(M[r + 1][i], M[piv][i]); for (int i = 0; i < N; i++) std::swap(M[i][r + 1], M[i][piv]); const auto rinv = Tp(1) / M[r + 1][r]; for (int i = r + 2; i < N; i++) { const auto n = M[i][r] * rinv; for (int j = 0; j < N; j++) M[i][j] -= M[r + 1][j] * n; for (int j = 0; j < N; j++) M[j][r + 1] += M[j][i] * n; } } } // Characteristic polynomial of matrix M (|xI - M|) // Complexity: O(n^3) // R. Rehman, I. C. Ipsen, "La Budde's Method for Computing Characteristic Polynomials," 2011. template <class Tp> std::vector<Tp> characteristic_poly(std::vector<std::vector<Tp>> &M) { hessenberg_reduction(M); const int N = M.size(); std::vector<std::vector<Tp>> p(N + 1); // p[i + 1] = (Characteristic polynomial of i-th leading principal minor) p[0] = {1}; for (int i = 0; i < N; i++) { p[i + 1].assign(i + 2, 0); for (int j = 0; j < i + 1; j++) p[i + 1][j + 1] += p[i][j]; for (int j = 0; j < i + 1; j++) p[i + 1][j] -= p[i][j] * M[i][i]; Tp betas = 1; for (int j = i - 1; j >= 0; j--) { betas *= M[j + 1][j]; Tp hb = -M[j][i] * betas; for (int k = 0; k < j + 1; k++) p[i + 1][k] += hb * p[j][k]; } } return p[N]; } int main() { int N, a, b = 0; mint prod = 1; cin >> N; vector mat0(N, vector<mint>(N)); vector mat1(N, vector<mint>(N)); for (int i = 0; i < N; i++) for (int j = 0; j < N; j++) { cin >> a; mat0[i][j] = a; } for (int i = 0; i < N; i++) for (int j = 0; j < N; j++) { cin >> a; mat1[i][j] = a; } for (int i = 0; i < N; ++i) { int piv = -1; for (int h = i; h < N; ++h) { if (mat1[h][i] != 0) piv = h; } if (piv < 0) { for (int h = 0; h < i; h++) { for (int hh = 0; hh < N; hh++) mat0[hh][i] -= mat0[hh][h] * mat1[h][i]; mat1[h][i] = 0; } b++; for (int h = 0; h < N; h++) { mat1[h][i] = mat0[h][i]; mat0[h][i] = 0; if (h >= i && mat1[h][i] != 0) piv = h; } if (piv >= 0) { i--; continue; } for (int h = 0; h <= N; h++) cout << "0\n"; return 0; } assert(piv >= i); swap(mat0[i], mat0[piv]); swap(mat1[i], mat1[piv]); if (i != piv) { for (int w = 0; w < N; ++w) { mat0[i][w] *= -1; mat1[i][w] *= -1; } } mint inv = mat1[i][i].inv(); prod *= mat1[i][i]; for (int w = 0; w < N; ++w) { mat0[i][w] *= inv; mat1[i][w] *= inv; } for (int h = 0; h < N; ++h) { if (h == i) continue; if (mat1[h][i] == 0) continue; const mint coeff = mat1[h][i]; for (int w = 0; w < N; ++w) { mat1[h][w] -= coeff * mat1[i][w]; mat0[h][w] -= coeff * mat0[i][w]; } } } for(auto &v : mat0) for (auto &x : v) x = -x; auto det_poly = characteristic_poly<mint>(mat0); for (int i = b; i <= N; i++) cout << (det_poly[i] * prod).val() << '\n'; for (int i = N + 1; i <= N + b; i++) cout << "0\n"; return 0; }