結果
問題 | No.1750 ラムドスウイルスの感染拡大-hard |
ユーザー | NatsubiSogan |
提出日時 | 2021-11-19 23:28:29 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 3,062 bytes |
コンパイル時間 | 303 ms |
コンパイル使用メモリ | 82,292 KB |
実行使用メモリ | 80,084 KB |
最終ジャッジ日時 | 2024-06-10 11:02:40 |
合計ジャッジ時間 | 26,601 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 65 ms
67,840 KB |
testcase_01 | AC | 66 ms
68,096 KB |
testcase_02 | AC | 71 ms
70,656 KB |
testcase_03 | AC | 79 ms
73,216 KB |
testcase_04 | AC | 140 ms
78,584 KB |
testcase_05 | AC | 58 ms
67,712 KB |
testcase_06 | AC | 63 ms
67,840 KB |
testcase_07 | AC | 64 ms
67,840 KB |
testcase_08 | AC | 474 ms
78,720 KB |
testcase_09 | AC | 459 ms
78,624 KB |
testcase_10 | AC | 472 ms
78,848 KB |
testcase_11 | AC | 386 ms
78,976 KB |
testcase_12 | AC | 529 ms
79,104 KB |
testcase_13 | AC | 479 ms
78,848 KB |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | AC | 1,499 ms
79,616 KB |
testcase_21 | AC | 1,742 ms
79,432 KB |
testcase_22 | AC | 559 ms
79,104 KB |
testcase_23 | AC | 1,976 ms
79,648 KB |
testcase_24 | AC | 314 ms
78,464 KB |
testcase_25 | AC | 616 ms
78,848 KB |
testcase_26 | AC | 272 ms
78,464 KB |
testcase_27 | AC | 89 ms
78,720 KB |
testcase_28 | AC | 107 ms
78,464 KB |
testcase_29 | AC | 78 ms
78,260 KB |
testcase_30 | AC | 380 ms
78,976 KB |
testcase_31 | AC | 355 ms
78,720 KB |
testcase_32 | AC | 354 ms
78,976 KB |
testcase_33 | AC | 337 ms
78,720 KB |
ソースコード
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] @classmethod def id(n): res = Matrix(n, n) for i in range(n): res[i][i] = 1 return res def __len__(self) -> int: return len(self.mat) def __str__(self) -> str: return "\n".join(" ".join(map(str, self[i])) for i in range(self.n)) def times(self, k: int) -> "Matrix": res = [[0] * self.m for i in range(self.n)] for i in range(self.n): 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) -> "Matrix": return self def __neg__(self) -> "Matrix": return self.times(-1) def __add__(self, other: "Matrix") -> "Matrix": res = [[0] * self.m for i in range(self.n)] for i in range(self.n): 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: "Matrix") -> "Matrix": res = [[0] * self.m for i in range(self.n)] for i in range(self.n): 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: 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] 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(n, n) for i in range(n): res[i][i] = 1 while k: if k & 1: res *= tmp tmp *= tmp k >>= 1 return res def determinant(self) -> int: res = 1 tmp = Matrix(self.n, self.n, self.mat) for j in range(self.n): if tmp[j][j] == 0: for i in range(j + 1, self.n): if tmp[i][j] != 0: break else: return 0 tmp.mat[j], tmp.mat[i] = tmp.mat[i], tmp.mat[j] res *= -1 inv = invmod(tmp[j][j], self.mod) for i in range(j + 1, self.n): c = -inv * tmp[i][j] % self.mod for k in range(self.n): tmp[i][k] += c * tmp[j][k] tmp[i][k] %= self.mod for i in range(self.n): res *= tmp[i][i] res %= self.mod 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 = 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])