結果

問題 No.2428 Returning Shuffle
ユーザー cho435cho435
提出日時 2023-08-19 01:41:44
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 849 ms / 2,000 ms
コード長 947 bytes
コンパイル時間 4,710 ms
コンパイル使用メモリ 276,932 KB
実行使用メモリ 42,240 KB
最終ジャッジ日時 2024-05-06 08:50:48
合計ジャッジ時間 9,720 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 307 ms
11,136 KB
testcase_01 AC 849 ms
42,240 KB
testcase_02 AC 811 ms
42,240 KB
testcase_03 AC 1 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 2 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 469 ms
34,176 KB
testcase_20 AC 506 ms
34,048 KB
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,016 KB
testcase_25 AC 338 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++)
using mint = atcoder::modint998244353;

map<int,int> dv(ll x){
	map<int,int> rt;
	ll cx=x;
	for(ll i=2;i*i<=x;i++){
		while(cx%i==0){
			cx/=i;
			rt[i]++;
		}
	}
	if(cx>1) rt[cx]++;
	return rt;
}

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)]++;
	const int MOD = 998244353;
	map<int,int> st;
	for(auto[ii,sz]:mp){
		map<int,int> d=dv(sz);
		for(auto[i,x]:d){
			if(st[i]<x){
				st[i]=x;
			}
		}
	}
	mint ans=1;
	for(auto[x,p]:st){
		ans*=mint(x).pow(p);
	}
	cout<<ans.val()<<endl;
}
0