結果

問題 No.1750 ラムドスウイルスの感染拡大-hard
ユーザー ぷらぷら
提出日時 2021-11-19 21:35:18
言語 C++17
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 395 ms / 2,000 ms
コード長 1,260 bytes
コンパイル時間 2,159 ms
コンパイル使用メモリ 206,008 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-08-30 07:37:19
合計ジャッジ時間 7,788 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 AC 2 ms
4,376 KB
testcase_04 AC 11 ms
4,380 KB
testcase_05 AC 1 ms
4,376 KB
testcase_06 AC 1 ms
4,376 KB
testcase_07 AC 1 ms
4,376 KB
testcase_08 AC 70 ms
4,376 KB
testcase_09 AC 70 ms
4,376 KB
testcase_10 AC 70 ms
4,376 KB
testcase_11 AC 53 ms
4,380 KB
testcase_12 AC 75 ms
4,376 KB
testcase_13 AC 70 ms
4,376 KB
testcase_14 AC 366 ms
4,376 KB
testcase_15 AC 375 ms
4,376 KB
testcase_16 AC 379 ms
4,380 KB
testcase_17 AC 383 ms
4,376 KB
testcase_18 AC 395 ms
4,380 KB
testcase_19 AC 379 ms
4,380 KB
testcase_20 AC 260 ms
4,376 KB
testcase_21 AC 301 ms
4,380 KB
testcase_22 AC 52 ms
4,376 KB
testcase_23 AC 358 ms
4,376 KB
testcase_24 AC 40 ms
4,380 KB
testcase_25 AC 98 ms
4,380 KB
testcase_26 AC 32 ms
4,376 KB
testcase_27 AC 2 ms
4,376 KB
testcase_28 AC 4 ms
4,380 KB
testcase_29 AC 2 ms
4,376 KB
testcase_30 AC 51 ms
4,384 KB
testcase_31 AC 48 ms
4,380 KB
testcase_32 AC 47 ms
4,376 KB
testcase_33 AC 46 ms
4,376 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