結果

問題 No.1750 ラムドスウイルスの感染拡大-hard
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2022-01-03 07:03:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,772 ms / 2,000 ms
コード長 3,292 bytes
コンパイル時間 905 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 77,992 KB
最終ジャッジ日時 2024-10-12 14:19:45
合計ジャッジ時間 19,874 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,288 KB
testcase_01 AC 39 ms
53,664 KB
testcase_02 AC 43 ms
59,640 KB
testcase_03 AC 48 ms
61,824 KB
testcase_04 AC 104 ms
74,576 KB
testcase_05 AC 39 ms
52,816 KB
testcase_06 AC 39 ms
53,416 KB
testcase_07 AC 40 ms
54,312 KB
testcase_08 AC 331 ms
76,508 KB
testcase_09 AC 333 ms
76,716 KB
testcase_10 AC 330 ms
76,752 KB
testcase_11 AC 276 ms
76,916 KB
testcase_12 AC 359 ms
76,884 KB
testcase_13 AC 345 ms
76,772 KB
testcase_14 AC 1,491 ms
77,984 KB
testcase_15 AC 1,534 ms
77,624 KB
testcase_16 AC 1,546 ms
77,800 KB
testcase_17 AC 1,772 ms
77,692 KB
testcase_18 AC 1,620 ms
77,992 KB
testcase_19 AC 1,557 ms
77,572 KB
testcase_20 AC 1,082 ms
77,072 KB
testcase_21 AC 1,253 ms
77,508 KB
testcase_22 AC 298 ms
76,516 KB
testcase_23 AC 1,463 ms
77,624 KB
testcase_24 AC 225 ms
76,112 KB
testcase_25 AC 451 ms
76,468 KB
testcase_26 AC 190 ms
76,356 KB
testcase_27 AC 62 ms
69,148 KB
testcase_28 AC 69 ms
73,524 KB
testcase_29 AC 59 ms
67,976 KB
testcase_30 AC 279 ms
76,644 KB
testcase_31 AC 268 ms
76,880 KB
testcase_32 AC 274 ms
76,896 KB
testcase_33 AC 260 ms
76,532 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class Matrix():
    def __init__(self, n, m ,mat=None,mod=998244353):
        self.n = n
        self.m = m
        self.MOD = mod
        self.mat = [[0] * self.m for _ in range(self.n)]
        if mat:
            assert len(mat) == n and len(mat[0]) == m
            for i in range(self.n):
                self.mat[i] = mat[i].copy()

    def is_square(self):
        return self.n == self.m

    def __getitem__(self, key):
        if isinstance(key, slice):
            return self.mat[key]
        else:
            assert key >= 0
            return self.mat[key]

    def id(n):
        res = Matrix(n, n)
        for i in range(n):
            res[i][i] = 1
        return res

    def __len__(self):
        return len(self.mat)

    def __str__(self):
        return '\n'.join(' '.join(map(str, self[i])) for i in range(self.n))

    def times(self, k):
        res = [[0] * self.m for _ in range(self.n)]
        for i in range(self.n):
            res_i, self_i = res[i], self[i]
            for j in range(self.m):
                res_i[j] = k * self_i[j] % self.MOD
        return Matrix(self.n, self.m, res)

    def __pos__(self):
        return self

    def __neg__(self):
        return self.times(-1)

    def __add__(self, other):
        assert self.n == other.n and self.m == other.m
        res = [[0] * self.m for _ in range(self.n)]
        for i in range(self.n):
            res_i, self_i, other_i = res[i], self[i], other[i]
            for j in range(self.m):
                res_i[j] = (self_i[j] + other_i[j]) % self.MOD
        return Matrix(self.n, self.m, res)

    def __sub__(self, other):
        assert self.n == other.n and self.m == other.m
        res = [[0] * self.m for _ in range(self.n)]
        for i in range(self.n):
            res_i, self_i, other_i = res[i], self[i], other[i]
            for j in range(self.m):
                res_i[j] = (self_i[j] - other_i[j]) % self.MOD
        return Matrix(self.n, self.m, res)

    def __mul__(self, other):
        if other.__class__ == Matrix:
            assert self.m == other.n
            res = [[0] * other.m for _ in range(self.n)]
            for i in range(self.n):
                res_i, self_i = res[i], self[i]
                for k in range(self.m):
                    self_ik, other_k = self_i[k], other[k]
                    for j in range(other.m):
                        res_i[j] += self_ik * other_k[j]
                        res_i[j] %= self.MOD
            return Matrix(self.n, other.m, res)
        else:
            return self.times(other)

    def __rmul__(self, other):
        return self.times(other)

    def __pow__(self, k):
        assert self.is_square()
        tmp = Matrix(self.n, self.n, self.mat)
        res = Matrix.id(self.n)
        while k:
            if k & 1:
                res *= tmp
            tmp *= tmp
            k >>= 1
        return res
        

N,M,T = map(int,input().split())
e = [[] for _ in range(N)]
for _ in range(M):
    s,t = map(int,input().split())
    e[s].append(t)
    e[t].append(s)
    
mod = 998244353
    
S = [[0]*N for _ in range(N)]
for i in range(N):
    for j in e[i]:
        S[i][j] = 1
S = Matrix(N,N,S,mod)
tS = S**T
B = [[0] for _ in range(N)]
B[0] = [1]
B = Matrix(N,1,B,mod)
ans = tS*B
print(ans[0][0])
0