結果

問題 No.1907 DETERMINATION
ユーザー tokusakuraitokusakurai
提出日時 2022-04-16 10:15:51
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 7,731 bytes
コンパイル時間 2,503 ms
コンパイル使用メモリ 211,664 KB
実行使用メモリ 5,764 KB
最終ジャッジ日時 2023-08-26 16:30:15
合計ジャッジ時間 30,852 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 AC 2 ms
4,380 KB
testcase_04 AC 2 ms
4,380 KB
testcase_05 AC 1 ms
4,376 KB
testcase_06 AC 2 ms
4,380 KB
testcase_07 AC 261 ms
4,728 KB
testcase_08 AC 104 ms
4,376 KB
testcase_09 AC 184 ms
4,380 KB
testcase_10 AC 579 ms
5,432 KB
testcase_11 AC 148 ms
4,388 KB
testcase_12 AC 652 ms
5,648 KB
testcase_13 AC 614 ms
5,460 KB
testcase_14 AC 590 ms
5,616 KB
testcase_15 AC 129 ms
4,376 KB
testcase_16 AC 37 ms
4,380 KB
testcase_17 AC 547 ms
5,620 KB
testcase_18 AC 390 ms
4,916 KB
testcase_19 AC 11 ms
4,380 KB
testcase_20 AC 599 ms
5,532 KB
testcase_21 AC 52 ms
4,376 KB
testcase_22 AC 197 ms
4,388 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 1 ms
4,380 KB
testcase_26 AC 669 ms
5,636 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 2 ms
4,380 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 672 ms
5,524 KB
testcase_34 AC 681 ms
5,624 KB
testcase_35 WA -
testcase_36 AC 2 ms
4,380 KB
testcase_37 WA -
testcase_38 AC 691 ms
5,504 KB
testcase_39 AC 676 ms
5,508 KB
testcase_40 WA -
testcase_41 AC 686 ms
5,608 KB
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 AC 662 ms
5,604 KB
testcase_47 AC 668 ms
5,616 KB
testcase_48 AC 673 ms
5,504 KB
testcase_49 AC 666 ms
5,652 KB
testcase_50 AC 661 ms
5,620 KB
testcase_51 AC 672 ms
5,584 KB
testcase_52 AC 2 ms
4,376 KB
testcase_53 AC 506 ms
4,552 KB
testcase_54 AC 503 ms
4,380 KB
testcase_55 AC 1 ms
4,380 KB
testcase_56 AC 499 ms
4,380 KB
testcase_57 AC 497 ms
4,384 KB
testcase_58 AC 501 ms
5,764 KB
testcase_59 AC 517 ms
5,628 KB
testcase_60 AC 532 ms
5,568 KB
testcase_61 AC 562 ms
5,608 KB
testcase_62 AC 530 ms
5,700 KB
testcase_63 AC 667 ms
5,508 KB
testcase_64 AC 1 ms
4,380 KB
testcase_65 AC 1 ms
4,376 KB
testcase_66 AC 1 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i, n) for (int i = 0; i < n; i++)
#define rep2(i, x, n) for (int i = x; i <= n; i++)
#define rep3(i, x, n) for (int i = x; i >= n; i--)
#define each(e, v) for (auto &e : v)
#define pb push_back
#define eb emplace_back
#define all(x) x.begin(), x.end()
#define rall(x) x.rbegin(), x.rend()
#define sz(x) (int)x.size()
using ll = long long;
using pii = pair<int, int>;
using pil = pair<int, ll>;
using pli = pair<ll, int>;
using pll = pair<ll, ll>;

template <typename T>
bool chmax(T &x, const T &y) {
    return (x < y) ? (x = y, true) : false;
}

template <typename T>
bool chmin(T &x, const T &y) {
    return (x > y) ? (x = y, true) : false;
}

template <typename T>
int flg(T x, int i) {
    return (x >> i) & 1;
}

template <typename T>
void print(const vector<T> &v, T x = 0) {
    int n = v.size();
    for (int i = 0; i < n; i++) cout << v[i] + x << (i == n - 1 ? '\n' : ' ');
    if (v.empty()) cout << '\n';
}

template <typename T>
void printn(const vector<T> &v, T x = 0) {
    int n = v.size();
    for (int i = 0; i < n; i++) cout << v[i] + x << '\n';
}

template <typename T>
int lb(const vector<T> &v, T x) {
    return lower_bound(begin(v), end(v), x) - begin(v);
}

template <typename T>
int ub(const vector<T> &v, T x) {
    return upper_bound(begin(v), end(v), x) - begin(v);
}

template <typename T>
void rearrange(vector<T> &v) {
    sort(begin(v), end(v));
    v.erase(unique(begin(v), end(v)), end(v));
}

template <typename T>
vector<int> id_sort(const vector<T> &v, bool greater = false) {
    int n = v.size();
    vector<int> ret(n);
    iota(begin(ret), end(ret), 0);
    sort(begin(ret), end(ret), [&](int i, int j) { return greater ? v[i] > v[j] : v[i] < v[j]; });
    return ret;
}

template <typename S, typename T>
pair<S, T> operator+(const pair<S, T> &p, const pair<S, T> &q) {
    return make_pair(p.first + q.first, p.second + q.second);
}

template <typename S, typename T>
pair<S, T> operator-(const pair<S, T> &p, const pair<S, T> &q) {
    return make_pair(p.first - q.first, p.second - q.second);
}

template <typename S, typename T>
istream &operator>>(istream &is, pair<S, T> &p) {
    S a;
    T b;
    is >> a >> b;
    p = make_pair(a, b);
    return is;
}

template <typename S, typename T>
ostream &operator<<(ostream &os, const pair<S, T> &p) {
    return os << p.first << ' ' << p.second;
}

struct io_setup {
    io_setup() {
        ios_base::sync_with_stdio(false);
        cin.tie(NULL);
        cout << fixed << setprecision(15);
    }
} io_setup;

const int inf = (1 << 30) - 1;
const ll INF = (1LL << 60) - 1;
// const int MOD = 1000000007;
const int MOD = 998244353;

template <int mod>
struct Mod_Int {
    int x;

    Mod_Int() : x(0) {}

    Mod_Int(long long y) : x(y >= 0 ? y % mod : (mod - (-y) % mod) % mod) {}

    static int get_mod() { return mod; }

    Mod_Int &operator+=(const Mod_Int &p) {
        if ((x += p.x) >= mod) x -= mod;
        return *this;
    }

    Mod_Int &operator-=(const Mod_Int &p) {
        if ((x += mod - p.x) >= mod) x -= mod;
        return *this;
    }

    Mod_Int &operator*=(const Mod_Int &p) {
        x = (int)(1LL * x * p.x % mod);
        return *this;
    }

    Mod_Int &operator/=(const Mod_Int &p) {
        *this *= p.inverse();
        return *this;
    }

    Mod_Int &operator++() { return *this += Mod_Int(1); }

    Mod_Int operator++(int) {
        Mod_Int tmp = *this;
        ++*this;
        return tmp;
    }

    Mod_Int &operator--() { return *this -= Mod_Int(1); }

    Mod_Int operator--(int) {
        Mod_Int tmp = *this;
        --*this;
        return tmp;
    }

    Mod_Int operator-() const { return Mod_Int(-x); }

    Mod_Int operator+(const Mod_Int &p) const { return Mod_Int(*this) += p; }

    Mod_Int operator-(const Mod_Int &p) const { return Mod_Int(*this) -= p; }

    Mod_Int operator*(const Mod_Int &p) const { return Mod_Int(*this) *= p; }

    Mod_Int operator/(const Mod_Int &p) const { return Mod_Int(*this) /= p; }

    bool operator==(const Mod_Int &p) const { return x == p.x; }

    bool operator!=(const Mod_Int &p) const { return x != p.x; }

    Mod_Int inverse() const {
        assert(*this != Mod_Int(0));
        return pow(mod - 2);
    }

    Mod_Int pow(long long k) const {
        Mod_Int now = *this, ret = 1;
        for (; k > 0; k >>= 1, now *= now) {
            if (k & 1) ret *= now;
        }
        return ret;
    }

    friend ostream &operator<<(ostream &os, const Mod_Int &p) { return os << p.x; }

    friend istream &operator>>(istream &is, Mod_Int &p) {
        long long a;
        is >> a;
        p = Mod_Int<mod>(a);
        return is;
    }
};

using mint = Mod_Int<MOD>;

template <typename T>
vector<T> characteristic_polynomial(vector<vector<T>> A) {
    int n = A.size();
    for (int j = 0; j < n - 2; j++) {
        for (int i = j + 2; i < n; i++) {
            if (A[i][j] != 0) {
                swap(A[j + 1], A[i]);
                for (int k = 0; k < n; k++) swap(A[k][j + 1], A[k][i]);
                break;
            }
        }
        if (A[j + 1][j] != 0) {
            T inv = A[j + 1][j].inverse();
            for (int i = j + 2; i < n; i++) {
                T c = A[i][j] * inv;
                for (int k = j; k < n; k++) A[i][k] -= A[j + 1][k] * c;
                for (int k = 0; k < n; k++) A[k][j + 1] += A[k][i] * c;
            }
        }
    }
    vector<vector<T>> p(n + 1);
    p[0] = {1};
    for (int i = 0; i < n; i++) {
        p[i + 1].assign(i + 2, 0);
        for (int j = 0; j <= i; j++) {
            p[i + 1][j + 1] += p[i][j];
            p[i + 1][j] -= p[i][j] * A[i][i];
        }
        T c = 1;
        for (int k = 1; k <= i; k++) {
            c *= -A[i + 1 - k][i - k];
            T x = c * (k & 1 ? A[i - k][i] : -A[i - k][i]);
            for (int j = 0; j <= i - k; j++) p[i + 1][j] += p[i - k][j] * x;
        }
    }
    return p[n];
}

int main() {
    int N;
    cin >> N;

    vector<vector<mint>> a(N, vector<mint>(N)), b(N, vector<mint>(N));
    rep(i, N) rep(j, N) cin >> a[i][j];
    rep(i, N) rep(j, N) cin >> b[i][j];

    mint tmp = 1;
    int deg = 0;

    rep(j, N) {
        rep3(i, j - 1, 0) {
            mint y = b[i][j];
            rep(k, N) {
                a[k][j] -= a[k][i] * y;
                b[k][j] -= b[k][i] * y;
            }
        }
        rep2(i, j + 1, N - 1) {
            if (b[i][j] != 0) {
                swap(a[j], a[i]);
                swap(b[j], b[i]);
                tmp *= -1;
                break;
            }
        }
        if (b[j][j] == 0) {
            rep2(i, j + 1, N - 1) {
                if (a[i][j] != 0) {
                    swap(a[j], a[i]);
                    swap(b[j], b[i]);
                    tmp *= -1;
                    break;
                }
            }
            deg++;
            rep(i, N) {
                b[i][j] = a[i][j];
                a[i][j] = 0;
            }
        }
        if (b[j][j] == 0) {
            rep(i, N + 1) cout << 0 << '\n';
            return 0;
        }

        mint x = b[j][j].inverse();
        tmp *= b[j][j];
        rep(k, N) {
            a[j][k] *= x;
            b[j][k] *= x;
        }
        rep(i, N) {
            if (i != j) {
                mint y = b[i][j];
                rep(k, N) {
                    a[i][k] -= y * a[j][k];
                    b[i][k] -= y * b[j][k];
                }
            }
        }
    }

    // rep(i, N) print(a[i]);
    // rep(i, N) print(b[i]);
    // cout << tmp << '\n';

    rep(i, N) rep(j, N) a[i][j] *= -1;
    auto f = characteristic_polynomial(a);

    vector<mint> p(N + 1, 0);
    rep2(i, deg, N) p[i - deg] += f[i] * tmp;
    printn(p);
}
0