結果

問題 No.2428 Returning Shuffle
ユーザー 0214sh70214sh7
提出日時 2023-08-14 21:39:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 1,328 bytes
コンパイル時間 572 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 305,148 KB
最終ジャッジ日時 2024-11-23 19:57:39
合計ジャッジ時間 21,076 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

MOD = 998244353
N,M = map(int,input().split())
S = [[] for _ in range(M)]
for i in range(M):
    T = list(map(int,input().split()))
    for j in range(len(T)):
        T[j] -= 1
    S[i] = T[1:]

#置換を作成する
F = [i for i in range(N)]
inverse = [i for i in range(N)]

for i in range(M):
    s = len(S[i])
    for j in range(s-1):
        F[inverse[S[i][j]]] = S[i][j+1]
    F[inverse[S[i][s-1]]] = S[i][0]

    tmp = inverse[S[i][s-1]]
    for j in range(s-2,-1,-1):
        inverse[S[i][j+1]] = inverse[S[i][j]]
    inverse[S[i][0]] = tmp


#サイクルの個数を考える
visited = [False]*N
C = []
for i in range(N):
    if visited[i]:
        continue
    now = F[i]; num = 1
    visited[i] = True
    while now != i:
        visited[now] = True
        now = F[now]
        num += 1
    C.append(num)

#CのLCMを求める
Map = {}
for c in C:
    E = []
    k = c
    i = 2
    while i*i<=c:
        if k%i==0:
            E.append([i,0])
        while k%i==0:
            k = k//i
            E[-1][1] += 1
        i += 1
    if k != 1:
        E.append([k,1])
    
    for p in E:
        if not p[0] in Map:
            Map[p[0]] = 0    
        Map[p[0]] = max(Map[p[0]],p[1])

Ans = 1
for p in list(Map.items()):
    for i in range(p[1]):
        Ans = (Ans*p[0])%MOD

#答えを出力する
print(Ans)

0