結果

問題 No.1750 ラムドスウイルスの感染拡大-hard
ユーザー ぷらぷら
提出日時 2021-11-19 21:35:18
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 353 ms / 2,000 ms
コード長 1,260 bytes
コンパイル時間 2,215 ms
コンパイル使用メモリ 209,776 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-10 08:05:48
合計ジャッジ時間 6,424 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 9 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 63 ms
6,944 KB
testcase_09 AC 62 ms
6,940 KB
testcase_10 AC 62 ms
6,944 KB
testcase_11 AC 51 ms
6,940 KB
testcase_12 AC 65 ms
6,940 KB
testcase_13 AC 62 ms
6,944 KB
testcase_14 AC 330 ms
6,940 KB
testcase_15 AC 331 ms
6,944 KB
testcase_16 AC 336 ms
6,944 KB
testcase_17 AC 341 ms
6,944 KB
testcase_18 AC 353 ms
6,944 KB
testcase_19 AC 335 ms
6,940 KB
testcase_20 AC 234 ms
6,940 KB
testcase_21 AC 264 ms
6,944 KB
testcase_22 AC 46 ms
6,944 KB
testcase_23 AC 314 ms
6,944 KB
testcase_24 AC 37 ms
6,944 KB
testcase_25 AC 89 ms
6,940 KB
testcase_26 AC 28 ms
6,940 KB
testcase_27 AC 2 ms
6,944 KB
testcase_28 AC 4 ms
6,944 KB
testcase_29 AC 2 ms
6,940 KB
testcase_30 AC 45 ms
6,944 KB
testcase_31 AC 43 ms
6,944 KB
testcase_32 AC 42 ms
6,940 KB
testcase_33 AC 41 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

constexpr int mod = 998244353;

vector<vector<long long>> Mul(vector<vector<long long>> A,vector<vector<long long>> B) {
    vector<vector<long long>>ans(A.size(),vector<long long>(A.size()));
    for(int i = 0; i < A.size(); i++) {
        for(int j = 0; j < A.size(); j++) {
            for(int k = 0; k < A.size(); k++) {
                ans[i][j] += A[i][k]*B[k][j]%mod;
                ans[i][j] %= mod;
            }
        }
    }
    return ans;
}

vector<vector<long long>> Pow(vector<vector<long long>> A,long long B) {
    vector<vector<long long>>ans(A.size(),vector<long long>(A.size()));
    for(int i = 0; i < A.size(); i++) {
        ans[i][i] = 1;
    }
    while (B) {
        if(1 & B) {
            ans = Mul(ans,A);
        }
        A = Mul(A,A);
        B /= 2;
    }
    return ans;
}

int main() {
    int N,M;
    long long T;
    cin >> N >> M >> T;
    vector<vector<long long>>tmp(N,vector<long long>(N));
    for(int i = 0; i < M; i++) {
        int s,t;
        cin >> s >> t;
        tmp[s][t] = tmp[t][s] = 1;
    }
    tmp = Pow(tmp,T);
    long long ans = 0;
    for(int i = 0; i < N; i++) {
        ans += tmp[i][i];
        ans %= mod;
    }
    cout << tmp[0][0] << endl;
}
0