結果

問題 No.2832 Nana's Fickle Adventure
ユーザー kwm_tkwm_t
提出日時 2024-08-03 16:31:40
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 120 ms / 3,000 ms
コード長 2,658 bytes
コンパイル時間 5,650 ms
コンパイル使用メモリ 317,456 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-08-03 16:31:50
合計ジャッジ時間 9,401 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 31 ms
6,820 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 58 ms
6,940 KB
testcase_04 AC 32 ms
6,940 KB
testcase_05 AC 6 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 9 ms
6,940 KB
testcase_09 AC 5 ms
6,940 KB
testcase_10 AC 8 ms
6,940 KB
testcase_11 AC 55 ms
6,940 KB
testcase_12 AC 59 ms
6,940 KB
testcase_13 AC 3 ms
6,940 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 1 ms
6,940 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 103 ms
6,940 KB
testcase_19 AC 113 ms
6,944 KB
testcase_20 AC 104 ms
6,940 KB
testcase_21 AC 105 ms
6,940 KB
testcase_22 AC 95 ms
6,940 KB
testcase_23 AC 102 ms
6,940 KB
testcase_24 AC 109 ms
6,944 KB
testcase_25 AC 99 ms
6,944 KB
testcase_26 AC 120 ms
6,940 KB
testcase_27 AC 5 ms
6,940 KB
testcase_28 AC 8 ms
6,944 KB
testcase_29 AC 59 ms
6,944 KB
testcase_30 AC 86 ms
6,940 KB
testcase_31 AC 103 ms
6,944 KB
testcase_32 AC 32 ms
6,944 KB
testcase_33 AC 2 ms
6,944 KB
testcase_34 AC 2 ms
6,940 KB
testcase_35 AC 8 ms
6,940 KB
testcase_36 AC 2 ms
6,944 KB
testcase_37 AC 112 ms
6,940 KB
testcase_38 AC 3 ms
6,944 KB
testcase_39 AC 59 ms
6,940 KB
testcase_40 AC 29 ms
6,944 KB
testcase_41 AC 57 ms
6,940 KB
testcase_42 AC 59 ms
6,940 KB
testcase_43 AC 108 ms
6,940 KB
testcase_44 AC 4 ms
6,944 KB
testcase_45 AC 3 ms
6,940 KB
testcase_46 AC 4 ms
6,940 KB
testcase_47 AC 51 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
//using mint = modint1000000007;
//const int mod = 1000000007;
using mint = modint998244353;
const int mod = 998244353;
//const int INF = 1e9;
//const long long LINF = 1e18;
#define rep(i, n) for (int i = 0; i < (n); ++i)
#define rep2(i,l,r)for(int i=(l);i<(r);++i)
#define rrep(i, n) for (int i = (n) - 1; i >= 0; --i)
#define rrep2(i,l,r)for(int i=(r) - 1;i>=(l);--i)
#define all(x) (x).begin(),(x).end()
#define allR(x) (x).rbegin(),(x).rend()
#define P pair<int,int>
template<typename A, typename B> inline bool chmax(A & a, const B & b) { if (a < b) { a = b; return true; } return false; }
template<typename A, typename B> inline bool chmin(A & a, const B & b) { if (a > b) { a = b; return true; } return false; }
#include <vector>
template<typename T>
std::vector<vector<T>> matrixMul(const std::vector<std::vector<T>>&A, const std::vector<std::vector<T>>&B) {
	std::vector<vector<T>> C(A.size(), std::vector<T>(B[0].size()));
	for (int i = 0; i < (int)A.size(); ++i) {
		for (int k = 0; k < (int)A[0].size(); ++k) {
			for (int j = 0; j < (int)B[0].size(); ++j) {
				C[i][j] += A[i][k] * B[k][j];
			}
		}
	}
	return C;
}
template<typename T>
std::vector<std::vector<T>> matrixPow(long long n, std::vector<std::vector<T>> mat) {
	int size = (int)mat.size();
	vector<vector<mint>> mret(size, vector<mint>(size));
	for (int i = 0; i < size; ++i) {
		mret[i][i] = 1;
	}
	while (n > 0) {
		if (1 & n) mret = matrixMul(mat, mret);
		mat = matrixMul(mat, mat);
		n >>= 1;
	}
	return mret;
}
int main() {
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	int n, m, x; cin >> n >> m >> x;
	vector<int>d(n);
	vector a(n, vector<int>(n));
	vector to(n, vector<int>(n));
	rep(i, m) {
		int u, v; cin >> u >> v;
		u--, v--;
		d[u]++;
		if (u != v)d[v]++;
		to[u][v]++;
		if (u != v)to[v][u]++;
	}
	vector<mint>inv(m + 1);
	rep2(i, 1, m + 1)inv[i] = mint(i).inv();
	vector mat(n * (n + 1), vector<mint>(n * (n + 1)));
	rep(i, n)rep(j, n) {
		if (0 == d[j])continue;
		int p = i * n + j;
		if (1 != d[j]) {
			rep(k, n) {
				// (i,j)->(j,k)
				int q = j * n + k;
				mint val = to[j][k];
				if (i == k) val--;
				mat[q][p] += val * inv[d[j] - 1];
			}
		}
		else {
			int q = n * n + j;
			mat[q][p] += 1;
		}
	}
	rep(i, n) {
		int p = n * n + i;
		if (0 == d[i]) {
			mat[p][p] = 1;
			continue;
		}
		rep(j, n) {
			// (*,i)->(i,j)
			int q = i * n + j;
			mint val = to[i][j];
			mat[q][p] += val * inv[d[i]];
		}
	}
	mat = matrixPow(x, mat);
	rep(i, n) {
		mint ans = 0;
		rep(j, n + 1) ans += mat[j * n + i][n * n];
		cout << ans.val() << endl;
	}
	return 0;
}
0