結果

問題 No.1750 ラムドスウイルスの感染拡大-hard
ユーザー hir355hir355
提出日時 2021-11-19 21:43:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,969 ms / 2,000 ms
コード長 566 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 43,968 KB
最終ジャッジ日時 2024-06-10 08:22:33
合計ジャッジ時間 32,126 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 440 ms
43,968 KB
testcase_01 AC 437 ms
43,588 KB
testcase_02 AC 479 ms
43,584 KB
testcase_03 AC 448 ms
43,840 KB
testcase_04 AC 480 ms
43,456 KB
testcase_05 AC 451 ms
43,712 KB
testcase_06 AC 444 ms
43,584 KB
testcase_07 AC 446 ms
43,584 KB
testcase_08 AC 664 ms
43,820 KB
testcase_09 AC 669 ms
43,560 KB
testcase_10 AC 670 ms
43,844 KB
testcase_11 AC 608 ms
43,592 KB
testcase_12 AC 689 ms
43,840 KB
testcase_13 AC 678 ms
43,592 KB
testcase_14 AC 1,650 ms
43,844 KB
testcase_15 AC 1,837 ms
43,564 KB
testcase_16 AC 1,668 ms
43,840 KB
testcase_17 AC 1,687 ms
43,580 KB
testcase_18 AC 1,969 ms
43,844 KB
testcase_19 AC 1,682 ms
43,588 KB
testcase_20 AC 1,287 ms
43,848 KB
testcase_21 AC 1,456 ms
43,836 KB
testcase_22 AC 641 ms
43,844 KB
testcase_23 AC 1,622 ms
43,840 KB
testcase_24 AC 606 ms
43,580 KB
testcase_25 AC 798 ms
43,616 KB
testcase_26 AC 569 ms
43,840 KB
testcase_27 AC 448 ms
43,900 KB
testcase_28 AC 464 ms
43,456 KB
testcase_29 AC 446 ms
43,588 KB
testcase_30 AC 642 ms
43,964 KB
testcase_31 AC 632 ms
43,840 KB
testcase_32 AC 616 ms
43,836 KB
testcase_33 AC 618 ms
43,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
MOD = 998244353
 
 
def mult(N, A, B):
    C = np.zeros((N, N), np.int64)
    for n in range(N):
        C[n] = (A[n, :][:, None] * B % MOD).sum(axis=0) % MOD
    return C
 
 
def mat_power(A, N, k):
    if k == 0:
        return np.eye(N, dtype=np.int64)
    X = mat_power(A, N, k//2)
    X = mult(N, X, X)
    return mult(N, A, X) if k & 1 else X
 
 
n, m, tt = map(int, input().split())
a = np.zeros((n, n), np.int64)
for i in range(m):
    s, t = map(int, input().split())
    a[s][t] = 1
    a[t][s] = 1
print(mat_power(a, n, tt)[0][0] % MOD)
0