結果

問題 No.2428 Returning Shuffle
ユーザー cho435cho435
提出日時 2023-08-19 01:26:53
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 602 bytes
コンパイル時間 4,463 ms
コンパイル使用メモリ 270,200 KB
実行使用メモリ 42,240 KB
最終ジャッジ日時 2024-05-06 08:36:37
合計ジャッジ時間 9,751 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using ll = long long;
#define rep(i,n) for(int i=0;i<(int)(n);i++)

int main(){
	int n,m;
	cin>>n>>m;
	vector<int> v(n);
	rep(i,n) v.at(i)=i;
	rep(i,m){
		int t;
		cin>>t;
		vector<int> s(t);
		rep(i,t) cin>>s.at(i),s.at(i)--;
		int bf=v.at(s.at(0));
		for(int i=t-1;i>=0;i--){
			v.at(s.at((i+1)%t))=v.at(s.at(i));
		}
		v.at(s.at(1))=bf;
	}
	atcoder::dsu uf(n);
	rep(i,n) uf.merge(i,v.at(i));
	map<int,ll> mp;
	rep(i,n) mp[uf.leader(i)]++;
	ll ans=1;
	for(auto[i,sz]:mp){
		ans=ans*sz/gcd(ans,sz);
	}
	cout<<ans%998244353<<endl;
}
0