結果
問題 | No.1750 ラムドスウイルスの感染拡大-hard |
ユーザー | NatsubiSogan |
提出日時 | 2021-11-19 23:33:15 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,624 bytes |
コンパイル時間 | 287 ms |
コンパイル使用メモリ | 12,928 KB |
実行使用メモリ | 19,872 KB |
最終ジャッジ日時 | 2024-06-10 11:09:11 |
合計ジャッジ時間 | 4,729 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
17,152 KB |
testcase_01 | AC | 37 ms
11,648 KB |
testcase_02 | AC | 38 ms
11,776 KB |
testcase_03 | AC | 35 ms
11,904 KB |
testcase_04 | AC | 798 ms
12,160 KB |
testcase_05 | AC | 36 ms
11,776 KB |
testcase_06 | AC | 36 ms
11,904 KB |
testcase_07 | AC | 36 ms
11,904 KB |
testcase_08 | TLE | - |
testcase_09 | -- | - |
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 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
ソースコード
import typing class Matrix: def __init__(self, n: int, m: int, mat: typing.Union[list, None] = None, mod: int = 998244353) -> None: self.n = n self.m = m self.mat = [[0] * self.m for i in range(self.n)] self.mod = mod if mat: for i in range(self.n): self.mat[i] = mat[i] def is_square(self) -> None: return self.n == self.m def __getitem__(self, key: int) -> int: if isinstance(key, slice): return self.mat[key] else: assert key >= 0 return self.mat[key] def __mul__(self, other: typing.Union["Matrix", int]) -> "Matrix": if other.__class__ == Matrix: res = [[0] * other.m for i in range(self.n)] for i in range(self.n): for k in range(self.m): for j in range(other.m): res[i][j] += self[i][k] * other[k][j] for i in range(self.n): for j in range(other.m): res[i][j] %= self.mod return Matrix(self.n, other.m, res) else: return self.times(other) def __rmul__(self, other: typing.Union["Matrix", int]) -> "Matrix": return self.times(other) def __pow__(self, k: int) -> "Matrix": tmp = Matrix(self.n, self.n, self.mat) res = Matrix(self.n, self.n) for i in range(self.n): res[i][i] = 1 while k: if k & 1: res *= tmp tmp *= tmp k >>= 1 return res def main(): import sys input = sys.stdin.buffer.readline 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 = Matrix(n, n, G) G **= t b = [[0] * n for i in range(n)] b[0][0] = 1 G *= Matrix(n, n, b) print(G.mat[0][0]) if __name__ == '__main__': main()