結果

問題 No.1750 ラムドスウイルスの感染拡大-hard
ユーザー shinichishinichi
提出日時 2021-11-20 01:32:54
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 946 ms / 2,000 ms
コード長 715 bytes
コンパイル時間 140 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,356 KB
最終ジャッジ日時 2024-06-10 14:27:45
合計ジャッジ時間 23,384 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 457 ms
44,112 KB
testcase_01 AC 465 ms
44,228 KB
testcase_02 AC 465 ms
44,104 KB
testcase_03 AC 457 ms
43,844 KB
testcase_04 AC 475 ms
44,236 KB
testcase_05 AC 462 ms
43,840 KB
testcase_06 AC 446 ms
43,972 KB
testcase_07 AC 455 ms
43,848 KB
testcase_08 AC 538 ms
43,720 KB
testcase_09 AC 535 ms
44,232 KB
testcase_10 AC 566 ms
44,096 KB
testcase_11 AC 525 ms
44,112 KB
testcase_12 AC 539 ms
43,844 KB
testcase_13 AC 543 ms
44,100 KB
testcase_14 AC 941 ms
44,104 KB
testcase_15 AC 904 ms
44,228 KB
testcase_16 AC 902 ms
44,096 KB
testcase_17 AC 885 ms
44,356 KB
testcase_18 AC 946 ms
44,236 KB
testcase_19 AC 933 ms
44,096 KB
testcase_20 AC 776 ms
44,228 KB
testcase_21 AC 773 ms
44,232 KB
testcase_22 AC 513 ms
44,100 KB
testcase_23 AC 850 ms
44,228 KB
testcase_24 AC 495 ms
44,356 KB
testcase_25 AC 564 ms
43,844 KB
testcase_26 AC 498 ms
44,232 KB
testcase_27 AC 453 ms
43,708 KB
testcase_28 AC 453 ms
44,136 KB
testcase_29 AC 447 ms
43,716 KB
testcase_30 AC 518 ms
44,104 KB
testcase_31 AC 513 ms
43,976 KB
testcase_32 AC 531 ms
43,976 KB
testcase_33 AC 523 ms
44,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
import numpy as np

N, M, T = map(int, input().split())
A = np.zeros(shape=(N, N), dtype=np.int64)
for _ in range(M):
    s, t = map(int, input().split())
    A[s, t] = 1
    A[t, s] = 1


mod = 998244353

def mat_mul(A, B, MOD):
    A1, A2 = A >> 15, A & (1 << 15) - 1
    B1, B2 = B >> 15, B & (1 << 15) - 1
    AB1 = np.dot(A1, B1) % MOD
    AB2 = np.dot(A2, B2)
    AB3 = np.dot(A1+A2, B1+B2) - AB1 - AB2
    return ((AB1 << 30) + (AB3 << 15) + AB2) % MOD


def mat_pow(A, K):
    P = np.eye(len(A), dtype=np.int64)
    while K:
        if K & 1:
            P = mat_mul(A, P, mod)
        A = mat_mul(A, A, mod)
        K >>= 1
    return P

P = mat_pow(A, T)
print(P[0, 0])
0