結果

問題 No.2428 Returning Shuffle
ユーザー titiatitia
提出日時 2023-09-04 01:16:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,128 ms / 2,000 ms
コード長 1,018 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 272,612 KB
最終ジャッジ日時 2024-06-22 01:21:36
合計ジャッジ時間 9,037 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 650 ms
102,608 KB
testcase_01 AC 916 ms
101,616 KB
testcase_02 AC 934 ms
101,220 KB
testcase_03 AC 38 ms
53,556 KB
testcase_04 AC 37 ms
53,452 KB
testcase_05 AC 37 ms
53,280 KB
testcase_06 AC 37 ms
53,868 KB
testcase_07 AC 37 ms
52,812 KB
testcase_08 AC 38 ms
52,724 KB
testcase_09 AC 37 ms
53,076 KB
testcase_10 AC 36 ms
52,496 KB
testcase_11 AC 39 ms
53,000 KB
testcase_12 AC 38 ms
53,548 KB
testcase_13 AC 39 ms
53,400 KB
testcase_14 AC 37 ms
53,112 KB
testcase_15 AC 38 ms
54,708 KB
testcase_16 AC 37 ms
54,348 KB
testcase_17 AC 37 ms
53,204 KB
testcase_18 AC 36 ms
52,456 KB
testcase_19 AC 817 ms
101,636 KB
testcase_20 AC 836 ms
101,144 KB
testcase_21 AC 38 ms
52,800 KB
testcase_22 AC 37 ms
52,668 KB
testcase_23 AC 38 ms
53,152 KB
testcase_24 AC 1,128 ms
272,612 KB
testcase_25 AC 1,054 ms
272,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

mod=998244353

N,M=map(int,input().split())

P=list(range(N))
for i in range(M):
    A=list(map(int,input().split()))[1:]
    X=[]

    for a in A:
        X.append(P[a-1])

    for i in range(len(A)):
        P[A[i]-1]=X[i-1]

    #print(P)

# UnionFind

Group = [i for i in range(N+1)] # グループ分け
Nodes = [1]*(N+1) # 各グループのノードの数

def find(x):
    while Group[x] != x:
        x=Group[x]
    return x

def Union(x,y):
    if find(x) != find(y):
        if Nodes[find(x)] < Nodes[find(y)]:
            
            Nodes[find(y)] += Nodes[find(x)]
            Nodes[find(x)] = 0
            Group[find(x)] = find(y)
            
        else:
            Nodes[find(x)] += Nodes[find(y)]
            Nodes[find(y)] = 0
            Group[find(y)] = find(x)

for i in range(N):
    Union(i,P[i])

from math import gcd

def lcm(x,y):
    return x*y//gcd(x,y)

ANS=1
for i in range(N):
    if find(i)==i:
        ANS=lcm(ANS,Nodes[i])

print(ANS%mod)
0