結果

問題 No.1750 ラムドスウイルスの感染拡大-hard
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-11-20 16:36:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 958 ms / 2,000 ms
コード長 832 bytes
コンパイル時間 277 ms
コンパイル使用メモリ 82,532 KB
実行使用メモリ 77,300 KB
最終ジャッジ日時 2024-06-11 18:29:37
合計ジャッジ時間 12,116 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,992 KB
testcase_01 AC 37 ms
52,672 KB
testcase_02 AC 40 ms
59,260 KB
testcase_03 AC 39 ms
61,232 KB
testcase_04 AC 73 ms
71,272 KB
testcase_05 AC 32 ms
52,332 KB
testcase_06 AC 35 ms
53,256 KB
testcase_07 AC 31 ms
53,328 KB
testcase_08 AC 216 ms
76,036 KB
testcase_09 AC 216 ms
76,164 KB
testcase_10 AC 218 ms
76,520 KB
testcase_11 AC 180 ms
76,404 KB
testcase_12 AC 234 ms
76,228 KB
testcase_13 AC 222 ms
76,568 KB
testcase_14 AC 898 ms
77,004 KB
testcase_15 AC 941 ms
77,300 KB
testcase_16 AC 934 ms
76,948 KB
testcase_17 AC 935 ms
76,776 KB
testcase_18 AC 958 ms
76,888 KB
testcase_19 AC 926 ms
76,700 KB
testcase_20 AC 642 ms
76,284 KB
testcase_21 AC 747 ms
76,568 KB
testcase_22 AC 178 ms
76,236 KB
testcase_23 AC 880 ms
76,472 KB
testcase_24 AC 146 ms
76,256 KB
testcase_25 AC 278 ms
75,892 KB
testcase_26 AC 126 ms
76,088 KB
testcase_27 AC 45 ms
64,884 KB
testcase_28 AC 58 ms
71,968 KB
testcase_29 AC 44 ms
64,992 KB
testcase_30 AC 175 ms
76,164 KB
testcase_31 AC 169 ms
76,056 KB
testcase_32 AC 165 ms
76,224 KB
testcase_33 AC 167 ms
75,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353

def mat_mul(a, b):
    n_a, m_a = len(a), len(a[0])
    n_b, m_b = len(b), len(b[0])
    res = [[0] * m_b for i in range(n_a)]
    for i in range(n_a):
        for k in range(m_a):
            for j in range(m_b):
                res[i][j] += a[i][k] * b[k][j]
                res[i][j] %= mod
    return res

def mat_pow(a, k):
    if k == 1: return a
    n = len(a)
    res = [[0] * n for i in range(n)]
    for i in range(n):
        res[i][i] = 1
    while k:
        if k & 1:
            res = mat_mul(res, a)
        a = mat_mul(a, a)
        k >>= 1
    return res

n, m, t = map(int, input().split())
G = [[0] * n for i in range(n)]
for _ in range(m):
	a, b = map(int, input().split())
	G[a][b] = 1
	G[b][a] = 1
G = mat_pow(G, t)
b = [[0] * n for i in range(n)]
b[0][0] = 1
G = mat_mul(G, b)
print(G[0][0])
0