結果

問題 No.2428 Returning Shuffle
ユーザー cho435cho435
提出日時 2023-08-19 01:24:02
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 628 bytes
コンパイル時間 4,857 ms
コンパイル使用メモリ 271,720 KB
実行使用メモリ 30,072 KB
最終ジャッジ日時 2024-11-28 13:48:06
合計ジャッジ時間 21,537 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 TLE -
testcase_02 TLE -
testcase_03 AC 2 ms
10,496 KB
testcase_04 AC 2 ms
20,368 KB
testcase_05 AC 2 ms
10,496 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 3 ms
5,248 KB
testcase_17 AC 2 ms
5,248 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 TLE -
testcase_20 TLE -
testcase_21 AC 2 ms
5,248 KB
testcase_22 AC 2 ms
5,248 KB
testcase_23 AC 2 ms
5,248 KB
testcase_24 AC 362 ms
15,056 KB
testcase_25 AC 362 ms
30,072 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)--;
		vector<int> nv(n,-1);
		rep(i,t){
			nv.at(s.at((i+1)%t))=v.at(s.at(i));
		}
		rep(i,n) if(nv.at(i)==-1) nv.at(i)=v.at(i);
		swap(nv,v);
	}
	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