結果

問題 No.2428 Returning Shuffle
ユーザー ntudantuda
提出日時 2023-08-19 10:48:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 880 ms / 2,000 ms
コード長 829 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 81,960 KB
実行使用メモリ 246,804 KB
最終ジャッジ日時 2024-11-29 02:33:53
合計ジャッジ時間 7,149 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 232 ms
93,464 KB
testcase_01 AC 873 ms
94,272 KB
testcase_02 AC 880 ms
94,272 KB
testcase_03 AC 39 ms
53,732 KB
testcase_04 AC 39 ms
53,496 KB
testcase_05 AC 39 ms
52,920 KB
testcase_06 AC 40 ms
52,936 KB
testcase_07 AC 39 ms
52,124 KB
testcase_08 AC 39 ms
53,016 KB
testcase_09 AC 39 ms
53,828 KB
testcase_10 AC 38 ms
53,144 KB
testcase_11 AC 38 ms
53,112 KB
testcase_12 AC 40 ms
54,056 KB
testcase_13 AC 39 ms
53,068 KB
testcase_14 AC 39 ms
53,484 KB
testcase_15 AC 39 ms
53,352 KB
testcase_16 AC 40 ms
53,828 KB
testcase_17 AC 40 ms
53,336 KB
testcase_18 AC 39 ms
53,208 KB
testcase_19 AC 582 ms
95,620 KB
testcase_20 AC 603 ms
94,836 KB
testcase_21 AC 41 ms
53,936 KB
testcase_22 AC 39 ms
52,708 KB
testcase_23 AC 39 ms
53,808 KB
testcase_24 AC 599 ms
245,972 KB
testcase_25 AC 606 ms
246,804 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353
from math import lcm

def root(x):
    if P[x] < 0: return x
    P[x] = root(P[x])  # 経路圧縮
    return P[x]

def unite(x, y):
    x = root(x)
    y = root(y)
    if x == y: return
    if x > y: x, y = y, x
    P[x] += P[y]
    P[y] = x

def same(x, y):
    return root(x) == root(y)

def size(x):
    x = root(x)
    return -P[x]


N, M = map(int, input().split())
P = [-1] * N

P1 = list(range(N))
for _ in range(M):
    t, *S = map(int, input().split())
    s0 = P1[S[0] - 1]
    n = len(S)
    for i in reversed(range(n)):
        if i == 0:
            P1[S[(i + 1) % t] - 1] = s0
            continue
        P1[S[(i + 1) % t] - 1] = P1[S[i] - 1]

for i, p in enumerate(P1):
    unite(i, p)
tmp = 1
for i in range(N):
    if i == root(i):
        s = size(i)
        tmp = lcm(tmp,s)
print(tmp % MOD)
0