結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 33 ms
6,812 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 59 ms
6,940 KB
testcase_04 AC 31 ms
6,940 KB
testcase_05 AC 6 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 9 ms
6,940 KB
testcase_09 AC 6 ms
6,944 KB
testcase_10 AC 9 ms
6,940 KB
testcase_11 AC 59 ms
6,944 KB
testcase_12 AC 58 ms
6,940 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 3 ms
6,944 KB
testcase_18 AC 113 ms
6,944 KB
testcase_19 AC 124 ms
6,944 KB
testcase_20 AC 113 ms
6,940 KB
testcase_21 AC 116 ms
6,944 KB
testcase_22 AC 106 ms
6,940 KB
testcase_23 AC 112 ms
6,948 KB
testcase_24 AC 120 ms
6,940 KB
testcase_25 AC 109 ms
6,940 KB
testcase_26 AC 134 ms
6,940 KB
testcase_27 AC 4 ms
6,940 KB
testcase_28 AC 8 ms
6,940 KB
testcase_29 AC 67 ms
6,944 KB
testcase_30 AC 93 ms
6,944 KB
testcase_31 AC 113 ms
6,940 KB
testcase_32 AC 35 ms
6,940 KB
testcase_33 AC 2 ms
6,944 KB
testcase_34 AC 3 ms
6,940 KB
testcase_35 AC 9 ms
6,940 KB
testcase_36 AC 2 ms
6,944 KB
testcase_37 AC 118 ms
6,940 KB
testcase_38 AC 2 ms
6,940 KB
testcase_39 AC 63 ms
6,944 KB
testcase_40 AC 33 ms
6,940 KB
testcase_41 AC 63 ms
6,944 KB
testcase_42 AC 64 ms
6,944 KB
testcase_43 AC 119 ms
6,944 KB
testcase_44 AC 5 ms
6,944 KB
testcase_45 AC 3 ms
6,940 KB
testcase_46 AC 4 ms
6,940 KB
testcase_47 AC 56 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 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]) {
			mint inv = (mint(d[j] - 1)).inv();// slow
			rep(k, n) {
				// (i,j)->(j,k)
				int q = j * n + k;
				mint val = to[j][k];
				if (i == k) val--;
				val *= inv;
				mat[q][p] += val;
			}
		}
		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;
		}
		mint inv = (mint(d[i])).inv();// slow
		rep(j, n) {
			// (*,i)->(i,j)
			int q = i * n + j;
			mint val = to[i][j];
			val *= inv;
			mat[q][p] += val;
		}
	}
	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