結果

問題 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
コンパイル時間 206 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 79,752 KB
最終ジャッジ日時 2024-04-26 18:49:41
合計ジャッジ時間 21,219 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 526 ms
44,004 KB
testcase_01 AC 504 ms
43,872 KB
testcase_02 AC 504 ms
44,136 KB
testcase_03 AC 490 ms
44,136 KB
testcase_04 WA -
testcase_05 AC 494 ms
43,880 KB
testcase_06 AC 491 ms
44,388 KB
testcase_07 AC 491 ms
44,132 KB
testcase_08 AC 510 ms
44,140 KB
testcase_09 AC 517 ms
44,260 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 609 ms
44,276 KB
testcase_19 AC 607 ms
43,752 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 497 ms
43,868 KB
testcase_28 AC 491 ms
44,136 KB
testcase_29 AC 491 ms
44,136 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