結果

問題 No.1750 ラムドスウイルスの感染拡大-hard
ユーザー MineMine
提出日時 2022-01-07 22:42:01
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 489 bytes
コンパイル時間 424 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,524 KB
最終ジャッジ日時 2024-11-14 08:57:26
合計ジャッジ時間 21,906 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 501 ms
44,256 KB
testcase_01 AC 503 ms
44,396 KB
testcase_02 AC 501 ms
43,880 KB
testcase_03 AC 509 ms
43,876 KB
testcase_04 WA -
testcase_05 AC 508 ms
44,260 KB
testcase_06 AC 509 ms
43,876 KB
testcase_07 AC 508 ms
44,472 KB
testcase_08 AC 523 ms
43,924 KB
testcase_09 AC 524 ms
43,992 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 612 ms
43,872 KB
testcase_19 AC 606 ms
44,388 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 505 ms
44,004 KB
testcase_28 AC 504 ms
43,976 KB
testcase_29 AC 506 ms
44,260 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

n, m, t = map(int, input().split())
mod = 998244353
graph = np.zeros([n, n], dtype="int64")
for i in range(m):
    a, b = map(int, input().split())
    graph[a][b] = 1
    graph[b][a] = 1

ans = np.identity(n, dtype="int64")
t_bin = bin(t)[2:]
for i in range(t.bit_length())[::-1]:
    if t_bin[i] == "1":
        ans = graph @ ans
        ans %= mod
    graph = graph @ graph
    graph %= mod
    
b = np.zeros([n, 1], dtype="int64")
b[0][0] = 1
print((ans @ b)[0][0])
0