結果

問題 No.1750 ラムドスウイルスの感染拡大-hard
ユーザー んんんんんん
提出日時 2022-12-22 22:40:45
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 341 ms / 2,000 ms
コード長 1,090 bytes
コンパイル時間 2,696 ms
コンパイル使用メモリ 230,500 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-18 03:36:40
合計ジャッジ時間 6,842 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 9 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 56 ms
5,248 KB
testcase_09 AC 57 ms
5,248 KB
testcase_10 AC 57 ms
5,248 KB
testcase_11 AC 43 ms
5,248 KB
testcase_12 AC 60 ms
5,248 KB
testcase_13 AC 56 ms
5,248 KB
testcase_14 AC 295 ms
5,248 KB
testcase_15 AC 304 ms
5,248 KB
testcase_16 AC 307 ms
5,248 KB
testcase_17 AC 335 ms
5,248 KB
testcase_18 AC 321 ms
5,248 KB
testcase_19 AC 341 ms
5,248 KB
testcase_20 AC 215 ms
5,248 KB
testcase_21 AC 248 ms
5,248 KB
testcase_22 AC 42 ms
5,248 KB
testcase_23 AC 288 ms
5,248 KB
testcase_24 AC 32 ms
5,248 KB
testcase_25 AC 79 ms
5,248 KB
testcase_26 AC 25 ms
5,248 KB
testcase_27 AC 2 ms
5,248 KB
testcase_28 AC 2 ms
5,248 KB
testcase_29 AC 2 ms
5,248 KB
testcase_30 AC 40 ms
5,248 KB
testcase_31 AC 39 ms
5,248 KB
testcase_32 AC 38 ms
5,248 KB
testcase_33 AC 37 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC target("avx")
#pragma GCC optimize("O2")
#pragma GCC optimize("unroll-loops")

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

const int MOD = 998244353;

int N, M;
long long T;

vector<vector<long long>> mul(const vector<vector<long long>> &A, const vector<vector<long long>> &B) {
    vector<vector<long long>> ret(N, vector<long long>(N, 0));
    for (int i = 0; i < N; i++) {
        for (int j = 0; j < N; j++) {
            for (int k = 0; k < N; k++) {
                ret[i][j] += A[i][k] * B[k][j];
                ret[i][j] %= MOD;
            }
        }
    }

    return ret;
}

int main() {
    cin >> N >> M >> T;
    vector<vector<long long>> mat(N, vector<long long>(N, 0));
    for (int i = 0; i < M; i++) {
        int s, t;
        cin >> s >> t;
        mat[s][t] = mat[t][s] = 1;
    }

    vector<vector<long long>> A(N, vector<long long>(N, 0));
    for (int i = 0; i < N; i++) A[i][i] = 1;

    while (T > 0) {
        if (T & 1) {
            A = mul(A, mat);
        }
        mat = mul(mat, mat);
        T >>= 1;
    }

    cout << A[0][0] << endl;
}
0