結果

問題 No.2428 Returning Shuffle
ユーザー 👑 獅子座じゃない人獅子座じゃない人
提出日時 2023-08-18 21:44:38
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
OLE  
実行時間 -
コード長 925 bytes
コンパイル時間 2,394 ms
コンパイル使用メモリ 212,088 KB
実行使用メモリ 12,672 KB
最終ジャッジ日時 2024-05-06 03:41:53
合計ジャッジ時間 10,122 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

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

#include <atcoder/dsu>
using namespace atcoder;

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;
        for(int i=0;i<n;++i){
            cout << a[i] << " ";
        }
        cout << endl;
    }
    dsu g(n);
    for(int i=0;i<n;++i){
        g.merge(i,a[i]);
    }
    auto groups=g.groups();
    long long ans=1;
    for(auto group: groups){
        ans=lcm(group.size(),ans);
    }
    cout << ans << endl;
    return 0;
}
0