結果

問題 No.2428 Returning Shuffle
ユーザー achapiachapi
提出日時 2023-08-18 21:43:14
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 695 bytes
コンパイル時間 5,071 ms
コンパイル使用メモリ 269,952 KB
実行使用メモリ 58,880 KB
最終ジャッジ日時 2024-05-06 03:40:01
合計ジャッジ時間 8,619 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 323 ms
46,208 KB
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 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 WA -
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 1 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 344 ms
46,352 KB
testcase_25 AC 343 ms
46,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using mint = atcoder::modint998244353;
using namespace std;

int main() {
	int N, M;
	cin >> N >> M;
	vector<int> A(N);
	iota(A.begin(), A.end(), 0);
	for (int i = 0; i < M; i++){
		int T;
		cin >> T;
		vector<int> S(T);
		for (int j = 0; j < T; j++){
			cin >> S[j];
			S[j]--;
		}
		vector<int> B(T);
		for (int j = 0; j < T; j++){
			B[j] = A[S[j]];
		}
		for (int j = 0; j < T; j++){
			A[S[j]] = B[(j - 1 + T) % T];
		}
	}
	atcoder::dsu uf(N);
	for (int i = 0; i < N; i++){
		uf.merge(i, A[i]);
	}
	mint ans = 1;
	set<int> S;
	for (auto s : uf.groups()){
		S.insert(s.size());
	}
	for (int i : S){
		ans *= i;
	}
	cout << ans.val() << '\n';
}
0