結果

問題 No.2428 Returning Shuffle
ユーザー 👑 獅子座じゃない人獅子座じゃない人
提出日時 2023-08-18 22:10:22
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,264 bytes
コンパイル時間 2,457 ms
コンパイル使用メモリ 220,804 KB
実行使用メモリ 88,320 KB
最終ジャッジ日時 2024-05-06 04:16:07
合計ジャッジ時間 7,113 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#include <atcoder/dsu>
#include <atcoder/modint>
using namespace atcoder;
using mint=modint998244353;

int main(void) {
    int n;
    cin >> n;
    int m;
    cin >> m;
    vector<int> t(m);
    vector<vector<int>> s(m);
    vector<int> a(n);
    for(int i=0;i<n;++i){
        a[i]=i;
    }
    for(int i=0;i<m;++i){
        cin >> t[i];
        s[i].resize(t[i]);
        for(int j=0;j<t[i];++j){
            cin >> s[i][j];
            --s[i][j];
        }
        int tmp=a[s[i][t[i]-1]];
        for(int j=t[i]-1;j>0;--j){
            a[s[i][j]]=a[s[i][j-1]];
        }
        a[s[i][0]]=tmp;
    }
    dsu g(n);
    for(int i=0;i<n;++i){
        g.merge(i,a[i]);
    }
    auto groups=g.groups();
    long long ans=1;
    mint answer=1;
    vector<int> sizes;
    map<int,bool> seen;
    for(auto group: groups){
        if(ans*gcd(ans,group.size())>=998244353 && !seen[gcd(ans,group.size())]) {
            seen[gcd(ans,group.size())]=true;
            answer*=gcd(ans,group.size());
        } else if(ans*gcd(ans,group.size())<998244353) {
            seen[gcd(ans,group.size())]=true;
            ans=lcm(ans,group.size());
        }
    }
    answer*=ans;
    cout << answer.val() << endl;
    return 0;
}
0