結果

問題 No.2428 Returning Shuffle
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2023-08-18 22:02:19
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 3,751 bytes
コンパイル時間 2,052 ms
コンパイル使用メモリ 211,236 KB
実行使用メモリ 25,088 KB
最終ジャッジ日時 2024-05-06 04:04:23
合計ジャッジ時間 6,248 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 WA -
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 WA -
testcase_10 AC 2 ms
5,376 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 WA -
testcase_25 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
using ll = long long;

const ll modc = 998244353;

ll mod_exp(ll b, ll e, ll m){
    if (e > 0 && b == 0) return 0;
    ll ans = 1;
    b %= m;

    while (e > 0){
        if ((e & 1LL)) ans = (ans * b) % m;
        e = e >> 1LL;
        b = (b*b) % m;
    }

    return ans;
}

class mint {
    ll x;
public:
    mint(ll x=0) : x((x%modc+modc)%modc) {}
    mint operator-() const {
      return mint(-x);
    }
    mint& operator+=(const mint& a) {
        if ((x += a.x) >= modc) x -= modc;
        return *this;
    }
    mint& operator-=(const mint& a) {
        if ((x += modc-a.x) >= modc) x -= modc;
        return *this;
    }
    mint& operator*=(const  mint& a) {
        (x *= a.x) %= modc;
        return *this;
    }
    mint operator+(const mint& a) const {
        mint res(*this);
        return res+=a;
    }
    mint operator-(const mint& a) const {
        mint res(*this);
        return res-=a;
    }
    mint operator*(const mint& a) const {
        mint res(*this);
        return res*=a;
    }
    mint pow(ll t) const {
        if (!t) return 1;
        mint a = pow(t>>1);
        a *= a;
        if (t&1) a *= *this;
        return a;
    }
    mint inv() const {
        return pow(modc-2);
    }
    mint& operator/=(const mint& a) {
        return (*this) *= a.inv();
    }
    mint operator/(const mint& a) const {
        mint res(*this);
        return res/=a;
    }
    bool operator == (const mint& a) const{
        return x == a.x;
    }
    friend ostream& operator<<(ostream& os, const mint& m){
        os << m.x;
        return os;
    }
    friend istream& operator>>(istream& ip, mint &m) {
        ll t;
        ip >> t;
        m = mint(t);
        return ip;
    }
    ll val(){
        return x;
    }
};



struct UnionFind {
    int ngroup, N;
    vector<int> par;
    vector<int> siz;

    UnionFind(int _N) : N(_N), par(_N), siz(_N) {
        ngroup = _N;
        for(int i = 0; i < N; i++){
            par[i] = i;
            siz[i] = 1;
        }
    }

    int root(int x) {
        if (par[x] == x) return x;
        return par[x] = root(par[x]);
    }

    int unite(int x, int y) {
        int rx = root(x);
        int ry = root(y);
        if (rx == ry) return rx;
        ngroup--;
        if (siz[rx] > siz[ry]) swap(rx, ry);
        par[rx] = ry;
        siz[ry] += siz[rx];
        return ry;
    }

    bool same(int x, int y) {
        int rx = root(x);
        int ry = root(y);
        return rx == ry;
    }

    int size(int x){
        return siz[root(x)];
    }

    int group_count(){
        return ngroup;
    }

    vector<vector<int>> groups(){
        vector<int> rev(N);
        int nrt=0;
        for (int i=0; i<N; i++){
            if (root(i) == i){
                rev[i] = nrt;
                nrt++;
            }
        }
        vector<vector<int>> res(nrt);
        for (int i=0; i<N; i++){
            res[rev[root(i)]].push_back(i);
        }

        return res;
    }
};

int main(){
 
    ll N, M, T, tmp;
    cin >> N >> M;
    vector<ll> P(N+1);
    for (int i=1; i<=N; i++) P[i] = i;
    for (int i=0; i<M; i++){
        cin >> T;
        vector<ll> S(T);
        for (int i=0; i<T; i++) cin >> S[i];
        tmp = P[S[T-1]];
        for (int i=T-2; i>=0; i--){
            P[S[i+1]] = P[S[i]];
        }
        P[S[0]] = tmp;
    }

    UnionFind tree(N+1);
    for (int i=1; i<=N; i++){
        tree.unite(P[i], i);
    }
    vector<ll> v;
    for (int i=1; i<=N; i++){
        if (tree.root(i) == i)  v.push_back(tree.size(i));
    }

    mint ans=1;
    ll g=0;
    for (auto x : v){
        g = gcd(g, x);
        ans *= x;
    }

    cout << ans * mod_exp(g, modc, modc-2) << endl;

    return 0;
}
0