結果

問題 No.1749 ラムドスウイルスの感染拡大
ユーザー lloyzlloyz
提出日時 2021-11-19 22:10:11
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 763 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 82,412 KB
実行使用メモリ 96,048 KB
最終ジャッジ日時 2024-06-10 09:11:57
合計ジャッジ時間 4,215 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
60,052 KB
testcase_01 AC 39 ms
52,936 KB
testcase_02 AC 42 ms
59,992 KB
testcase_03 AC 38 ms
53,660 KB
testcase_04 AC 84 ms
70,532 KB
testcase_05 AC 38 ms
53,488 KB
testcase_06 AC 38 ms
53,816 KB
testcase_07 AC 38 ms
52,344 KB
testcase_08 AC 46 ms
66,596 KB
testcase_09 TLE -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m, t = map(int, input().split())
M = [[0 for _ in range(n)] for _ in range(n)]
for _ in range(m):
    a, b = map(int, input().split())
    M[a][b] = 1
    M[b][a] = 1
mod = 998244353

def matmul(A, B):
    Ah, Bh, Bw = len(A), len(B), len(B[0])
    C = [[0 for _ in range(Bw)] for _ in range(Ah)]
    for i in range(Ah):
        for j in range(Bw):
            for k in range(Bh):
                C[i][j] += A[i][k] * B[k][j]
                C[i][j] %= mod
    return C

# Mのk乗を効率的に計算する
def doubling(M, k):
    k -= 1
    Mc = M.copy()
    while k > 0:
        if k & 1 == 1:
            Mc = matmul(Mc, M)
        M = matmul(M, M) # Mの(2のi乗)の乗 を計算する
        k >>= 1
    return Mc

Mt = doubling(M, t)
print(Mt[0][0])
0