結果
問題 | No.1750 ラムドスウイルスの感染拡大-hard |
ユーザー | magurofly |
提出日時 | 2021-11-19 22:07:06 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,947 bytes |
コンパイル時間 | 1,895 ms |
コンパイル使用メモリ | 207,608 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-10 09:07:43 |
合計ジャッジ時間 | 5,631 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | RE | - |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 41 ms
5,376 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
ソースコード
#include <bits/stdc++.h> using namespace std; // #include <atcoder/all> // using namespace atcoder; #define rep(i, l, r) for (auto i = (l); i < (r); i++) #define all(a) a.begin(), a.end() #define chmin(dest, src) if ((dest) > (src)) dest = (src) #define chmax(dest, src) if ((dest) < (src)) dest = (src) using ll = int; using i64 = long long; using i32 = long; using u64 = unsigned long long; using u32 = unsigned long; const ll MOD = 998244353; using Type = ll; using Matrix = vector<vector<ll>>; Matrix Mul(const Matrix &a, const Matrix &b) { assert(a[0].size() == b.size()); Matrix c(a.size(), vector<Type> (b[0].size(), 0)); for (int i = 0; i < a.size(); i ++) { for (int k = 0; k < b.size(); k ++) { for (int j = 0; j < b[0].size(); j ++) { c[i][j] = (c[i][j] + a[i][k] * b[k][j] % MOD) % MOD; } } } return c; } Matrix Pow(Matrix a, long long n) { assert(a.size() == a[0].size()); Matrix b(a.size(), vector<Type> (a.size())); for (int i = 0; i < a.size(); i ++) { b[i][i] = 1; } while (n > 0) { if (n & 1) b = Mul(b, a); a = Mul(a, a); n >>= 1; } return b; } void PrintMatrix(const Matrix &a) { int h = a.size(), w = a[0].size(); for (int i = 0; i < h; i ++) { for (int j = 0; j < w; j ++) { cout << a[i][j] << ' '; } cout << endl; } } int main() { ll N, M, T; cin >> N >> M >> T; vector<vector<ll>> mat(N, vector<ll>(N, 0)); rep (i, 0, M) { int s, t; cin >> s >> t; mat[s][t] = mat[t][s] = 1; } mat = Pow(mat, T); ll ans = mat[0][0]; if (ans < 0) ans += MOD; cout << ans; return 0; }