結果

問題 No.1750 ラムドスウイルスの感染拡大-hard
ユーザー brthyyjpbrthyyjp
提出日時 2021-11-24 09:14:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,909 ms / 2,000 ms
コード長 937 bytes
コンパイル時間 295 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 76,672 KB
最終ジャッジ日時 2024-06-26 08:24:23
合計ジャッジ時間 22,194 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,840 KB
testcase_01 AC 43 ms
52,096 KB
testcase_02 AC 46 ms
58,112 KB
testcase_03 AC 49 ms
59,648 KB
testcase_04 AC 95 ms
64,896 KB
testcase_05 AC 41 ms
51,840 KB
testcase_06 AC 41 ms
51,840 KB
testcase_07 AC 41 ms
52,096 KB
testcase_08 AC 381 ms
76,160 KB
testcase_09 AC 380 ms
76,032 KB
testcase_10 AC 378 ms
76,160 KB
testcase_11 AC 298 ms
72,448 KB
testcase_12 AC 400 ms
76,160 KB
testcase_13 AC 382 ms
76,160 KB
testcase_14 AC 1,789 ms
76,416 KB
testcase_15 AC 1,824 ms
76,544 KB
testcase_16 AC 1,841 ms
76,416 KB
testcase_17 AC 1,852 ms
76,416 KB
testcase_18 AC 1,909 ms
76,288 KB
testcase_19 AC 1,825 ms
76,416 KB
testcase_20 AC 1,259 ms
76,416 KB
testcase_21 AC 1,461 ms
76,288 KB
testcase_22 AC 309 ms
75,648 KB
testcase_23 AC 1,707 ms
76,672 KB
testcase_24 AC 252 ms
76,032 KB
testcase_25 AC 514 ms
76,032 KB
testcase_26 AC 209 ms
75,776 KB
testcase_27 AC 60 ms
65,280 KB
testcase_28 AC 77 ms
76,032 KB
testcase_29 AC 58 ms
64,640 KB
testcase_30 AC 300 ms
75,776 KB
testcase_31 AC 287 ms
76,032 KB
testcase_32 AC 283 ms
75,648 KB
testcase_33 AC 278 ms
76,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# A*B
def mat_mul(A, B, mod):
    C = [[0]*len(B[0]) for i in range(len(A))]
    for i in range(len(A)):
        for j in range(len(B[0])):
            temp = 0
            for k in range(len(A[0])):
                temp = (temp + A[i][k]*B[k][j])%mod
            C[i][j] = temp
    return C

#A**n
def mat_pow(A, n, mod):
    B = [[0]*len(A) for i in range(len(A))]
    for i in range(len(A)):
        B[i][i] = 1
    for i in range(n.bit_length()):
        if (n >> i)&1:
            B = mat_mul(A, B, mod)
        A = mat_mul(A, A, mod)
    return B

import sys
import io, os
input = io.BytesIO(os.read(0,os.fstat(0).st_size)).readline
mod = 998244353

def main():

    n, m, t = map(int, input().split())
    A = [[0]*n for i in range(n)]
    for i in range(m):
        u, v = map(int, input().split())
        A[u][v] = 1
        A[v][u] = 1

    A = mat_pow(A, t, mod)
    print(A[0][0]%mod)

if __name__ == '__main__':
    main()
0