結果
問題 | No.2428 Returning Shuffle |
ユーザー | cho435 |
提出日時 | 2023-08-19 01:24:02 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 628 bytes |
コンパイル時間 | 4,363 ms |
コンパイル使用メモリ | 270,216 KB |
実行使用メモリ | 20,584 KB |
最終ジャッジ日時 | 2024-05-06 08:33:23 |
合計ジャッジ時間 | 10,882 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | TLE | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
ソースコード
#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; }