結果

問題 No.2428 Returning Shuffle
ユーザー anonymouslyanonymously
提出日時 2023-08-18 23:16:53
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 413 bytes
コンパイル時間 290 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 167,888 KB
最終ジャッジ日時 2024-11-28 10:10:29
合計ジャッジ時間 26,544 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 TLE -
testcase_03 AC 30 ms
16,000 KB
testcase_04 AC 30 ms
69,940 KB
testcase_05 AC 30 ms
16,128 KB
testcase_06 AC 30 ms
70,020 KB
testcase_07 AC 30 ms
16,000 KB
testcase_08 AC 30 ms
167,888 KB
testcase_09 AC 31 ms
16,000 KB
testcase_10 AC 30 ms
10,624 KB
testcase_11 AC 30 ms
10,752 KB
testcase_12 AC 30 ms
10,752 KB
testcase_13 AC 30 ms
10,752 KB
testcase_14 AC 30 ms
10,624 KB
testcase_15 AC 30 ms
10,880 KB
testcase_16 AC 30 ms
10,752 KB
testcase_17 AC 31 ms
10,752 KB
testcase_18 AC 31 ms
10,752 KB
testcase_19 TLE -
testcase_20 TLE -
testcase_21 AC 31 ms
10,752 KB
testcase_22 AC 31 ms
10,752 KB
testcase_23 AC 30 ms
10,624 KB
testcase_24 TLE -
testcase_25 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

n,m=map(int,input().split())
P=[i if i else None for i in range(n+1)]
for j in range(m):
	S=[int(_) for _ in input().split()]
	t=P[S[-1]]
	for k in range(1,S[0]):
		P[S[-k]]=P[S[-1-k]]
	P[S[1]]=t

#print(P)

A=[-1]*(n+1)
for i in range(1,n+1):
	if A[i]<0:
		S={i}
		j=i
		c=0
		while True:
			j=P[j]
			c+=1
			S=S|{j}
			if j==i:
				break
		for k in S:
			A[k]=c	

print(math.lcm(*A[1:])%998244353)
0