結果

問題 No.1750 ラムドスウイルスの感染拡大-hard
ユーザー brthyyjpbrthyyjp
提出日時 2021-11-24 09:02:42
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 905 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 77,056 KB
最終ジャッジ日時 2024-06-26 08:11:18
合計ジャッジ時間 24,765 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 37 ms
52,864 KB
testcase_02 AC 43 ms
58,496 KB
testcase_03 AC 44 ms
60,160 KB
testcase_04 AC 94 ms
65,792 KB
testcase_05 AC 37 ms
51,968 KB
testcase_06 AC 37 ms
52,480 KB
testcase_07 AC 41 ms
52,480 KB
testcase_08 AC 420 ms
76,332 KB
testcase_09 AC 416 ms
76,116 KB
testcase_10 AC 416 ms
76,472 KB
testcase_11 AC 322 ms
72,704 KB
testcase_12 AC 440 ms
76,032 KB
testcase_13 AC 419 ms
76,160 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 1,450 ms
76,400 KB
testcase_21 AC 1,681 ms
76,416 KB
testcase_22 AC 335 ms
76,132 KB
testcase_23 AC 1,968 ms
76,612 KB
testcase_24 AC 270 ms
76,168 KB
testcase_25 AC 581 ms
75,924 KB
testcase_26 AC 219 ms
75,776 KB
testcase_27 AC 51 ms
64,256 KB
testcase_28 AC 62 ms
69,760 KB
testcase_29 AC 49 ms
63,768 KB
testcase_30 AC 329 ms
75,732 KB
testcase_31 AC 312 ms
75,728 KB
testcase_32 AC 305 ms
75,768 KB
testcase_33 AC 300 ms
76,032 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 k in range(len(B)):
            for j in range(len(B[0])):
                C[i][j] = (C[i][j] + A[i][k]*B[k][j])%mod
    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
    while n > 0:
        if n & 1 == 1:
            B = mat_mul(A, B, mod)
        A = mat_mul(A, A, mod)
        n = n>>1
    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)
    ans = A[0][0]%mod
    print(ans)

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