結果

問題 No.1340 おーじ君をさがせ
ユーザー H3PO4H3PO4
提出日時 2021-01-15 22:41:40
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 569 ms / 2,000 ms
コード長 601 bytes
コンパイル時間 88 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 44,468 KB
最終ジャッジ日時 2024-05-05 21:53:38
合計ジャッジ時間 32,355 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 453 ms
43,832 KB
testcase_01 AC 457 ms
43,696 KB
testcase_02 AC 456 ms
43,816 KB
testcase_03 AC 472 ms
43,824 KB
testcase_04 AC 467 ms
44,080 KB
testcase_05 AC 459 ms
43,820 KB
testcase_06 AC 451 ms
43,896 KB
testcase_07 AC 454 ms
44,080 KB
testcase_08 AC 454 ms
43,712 KB
testcase_09 AC 453 ms
44,080 KB
testcase_10 AC 454 ms
44,088 KB
testcase_11 AC 498 ms
43,828 KB
testcase_12 AC 469 ms
44,212 KB
testcase_13 AC 468 ms
44,084 KB
testcase_14 AC 484 ms
44,340 KB
testcase_15 AC 488 ms
44,148 KB
testcase_16 AC 459 ms
43,700 KB
testcase_17 AC 473 ms
44,084 KB
testcase_18 AC 478 ms
44,084 KB
testcase_19 AC 465 ms
44,204 KB
testcase_20 AC 449 ms
44,208 KB
testcase_21 AC 499 ms
43,824 KB
testcase_22 AC 511 ms
44,080 KB
testcase_23 AC 496 ms
43,824 KB
testcase_24 AC 537 ms
44,204 KB
testcase_25 AC 486 ms
43,696 KB
testcase_26 AC 482 ms
44,468 KB
testcase_27 AC 475 ms
43,696 KB
testcase_28 AC 479 ms
44,084 KB
testcase_29 AC 472 ms
43,864 KB
testcase_30 AC 509 ms
44,336 KB
testcase_31 AC 566 ms
43,828 KB
testcase_32 AC 559 ms
43,824 KB
testcase_33 AC 551 ms
44,080 KB
testcase_34 AC 536 ms
43,960 KB
testcase_35 AC 569 ms
43,820 KB
testcase_36 AC 460 ms
43,824 KB
testcase_37 AC 475 ms
43,836 KB
testcase_38 AC 560 ms
44,080 KB
testcase_39 AC 502 ms
43,696 KB
testcase_40 AC 500 ms
44,464 KB
testcase_41 AC 490 ms
44,080 KB
testcase_42 AC 456 ms
44,084 KB
testcase_43 AC 447 ms
43,696 KB
testcase_44 AC 446 ms
43,956 KB
testcase_45 AC 448 ms
44,208 KB
testcase_46 AC 473 ms
44,088 KB
testcase_47 AC 473 ms
44,212 KB
testcase_48 AC 495 ms
43,824 KB
testcase_49 AC 463 ms
44,088 KB
testcase_50 AC 470 ms
44,212 KB
testcase_51 AC 476 ms
44,208 KB
testcase_52 AC 487 ms
43,696 KB
testcase_53 AC 484 ms
43,816 KB
testcase_54 AC 500 ms
43,832 KB
testcase_55 AC 495 ms
44,216 KB
testcase_56 AC 458 ms
44,080 KB
testcase_57 AC 445 ms
44,208 KB
testcase_58 AC 453 ms
44,212 KB
testcase_59 AC 461 ms
44,080 KB
testcase_60 AC 448 ms
43,840 KB
testcase_61 AC 474 ms
43,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np


def pow_matrix_mod(x, n):
    if not n:
        return np.eye(len(x), dtype=int)
    if n % 2 == 0:
        return pow_matrix_mod(np.where((x @ x) != 0, 1, 0), n // 2)
    else:
        tmp = pow_matrix_mod(np.where((x @ x) != 0, 1, 0), (n - 1) // 2)
        return np.where((x @ tmp) != 0, 1, 0)


N, M, T = map(int, input().split())
matr = [[0] * N for _ in range(N)]
for _ in range(M):
    a, b = map(int, input().split())
    matr[a][b] = 1
matr = np.array(matr)

first = np.zeros(N, dtype=int)
first[0] = 1

ans = np.count_nonzero(first @ pow_matrix_mod(matr, T))
print(ans)
0