結果

問題 No.1750 ラムドスウイルスの感染拡大-hard
ユーザー んんんんんん
提出日時 2022-12-22 22:28:36
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,992 bytes
コンパイル時間 3,589 ms
コンパイル使用メモリ 234,512 KB
実行使用メモリ 13,644 KB
最終ジャッジ日時 2024-11-18 03:35:48
合計ジャッジ時間 36,354 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,644 KB
testcase_01 AC 2 ms
11,044 KB
testcase_02 AC 2 ms
13,640 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 69 ms
6,820 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 614 ms
6,820 KB
testcase_09 AC 616 ms
6,816 KB
testcase_10 AC 619 ms
6,816 KB
testcase_11 AC 483 ms
6,820 KB
testcase_12 AC 579 ms
6,816 KB
testcase_13 AC 546 ms
6,816 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 392 ms
6,816 KB
testcase_23 TLE -
testcase_24 AC 323 ms
6,816 KB
testcase_25 AC 744 ms
6,816 KB
testcase_26 AC 232 ms
6,820 KB
testcase_27 AC 5 ms
6,816 KB
testcase_28 AC 13 ms
6,816 KB
testcase_29 AC 5 ms
6,816 KB
testcase_30 AC 384 ms
6,820 KB
testcase_31 AC 366 ms
6,820 KB
testcase_32 AC 366 ms
6,816 KB
testcase_33 AC 344 ms
11,044 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(2*N, vector<long long>(2*N, 0));
    for (int i = 0; i < 2*N; i++) {
        for (int j = 0; j < 2*N; j++) {
            for (int k = 0; k < 2*N; k++) {
                ret[i][j] += A[i][k] * B[k][j];
                ret[i][j] %= MOD;
            }
        }
    }

    return ret;
}

vector<vector<long long>> mulx(vector<vector<long long>> &A, const vector<vector<long long>> &B) {
    vector<vector<long long>> ret(2*N, vector<long long>(N, 0));
    for (int i = 0; i < 2*N; i++) {
        for (int j = 0; j < N; j++) {
            for (int k = 0; k < 2*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>> edge(N, vector<long long>(N, 0));
    for (int i = 0; i < M; i++) {
        int s, t;
        cin >> s >> t;
        edge[s][t] = edge[t][s] = 1;
    }

    vector<vector<long long>> mat(2*N, vector<long long>(2*N, 0));
    for (int i = 0; i < N; i++) {
        for (int j = 0; j < N; j++) {
            mat[i][j] = mat[i+N][j] = edge[i][j];
        }
        mat[i+N][i+N] = 1;
    }
    vector<vector<long long>> A(2*N, vector<long long>(2*N, 0));
    for (int i = 0; i < 2*N; i++) A[i][i] = 1;

    T--;
    while (T > 0) {
        if (T & 1) {
            A = mul(A, mat);
        }
        mat = mul(mat, mat);
        T /= 2;
    }
    vector<vector<long long>> B(2*N, vector<long long>(N, 0));
    for (int i = 0; i < N; i++) {
        for (int j = 0; j < N; j++) {
            B[i][j] = edge[i][j];
        }
        B[i+N][i] = 1;
    }

    B = mulx(A, B);

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