結果
問題 | No.2428 Returning Shuffle |
ユーザー | cho435 |
提出日時 | 2023-08-19 01:41:44 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 911 ms / 2,000 ms |
コード長 | 947 bytes |
コンパイル時間 | 4,607 ms |
コンパイル使用メモリ | 277,360 KB |
実行使用メモリ | 42,368 KB |
最終ジャッジ日時 | 2024-11-28 14:13:00 |
合計ジャッジ時間 | 10,354 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 340 ms
11,116 KB |
testcase_01 | AC | 911 ms
42,368 KB |
testcase_02 | AC | 910 ms
42,368 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 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 | 1 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 | 2 ms
5,248 KB |
testcase_17 | AC | 2 ms
5,248 KB |
testcase_18 | AC | 2 ms
5,248 KB |
testcase_19 | AC | 536 ms
34,144 KB |
testcase_20 | AC | 554 ms
34,140 KB |
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 | 350 ms
11,144 KB |
testcase_25 | AC | 351 ms
11,024 KB |
ソースコード
#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; }