結果

問題 No.1340 おーじ君をさがせ
ユーザー maspymaspy
提出日時 2020-10-07 13:53:54
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 750 ms / 2,000 ms
コード長 566 bytes
コンパイル時間 242 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,524 KB
最終ジャッジ日時 2024-05-05 21:42:06
合計ジャッジ時間 36,162 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 454 ms
44,004 KB
testcase_01 AC 450 ms
44,392 KB
testcase_02 AC 451 ms
43,880 KB
testcase_03 AC 464 ms
44,132 KB
testcase_04 AC 475 ms
44,136 KB
testcase_05 AC 458 ms
44,136 KB
testcase_06 AC 458 ms
44,012 KB
testcase_07 AC 462 ms
44,136 KB
testcase_08 AC 462 ms
44,392 KB
testcase_09 AC 458 ms
44,008 KB
testcase_10 AC 460 ms
44,396 KB
testcase_11 AC 512 ms
44,396 KB
testcase_12 AC 486 ms
44,404 KB
testcase_13 AC 488 ms
44,140 KB
testcase_14 AC 503 ms
44,140 KB
testcase_15 AC 530 ms
44,272 KB
testcase_16 AC 466 ms
44,516 KB
testcase_17 AC 490 ms
44,016 KB
testcase_18 AC 488 ms
44,144 KB
testcase_19 AC 468 ms
44,392 KB
testcase_20 AC 456 ms
44,016 KB
testcase_21 AC 498 ms
44,136 KB
testcase_22 AC 536 ms
44,060 KB
testcase_23 AC 652 ms
44,272 KB
testcase_24 AC 750 ms
44,272 KB
testcase_25 AC 550 ms
44,396 KB
testcase_26 AC 475 ms
44,264 KB
testcase_27 AC 482 ms
44,388 KB
testcase_28 AC 469 ms
44,392 KB
testcase_29 AC 470 ms
44,268 KB
testcase_30 AC 491 ms
44,264 KB
testcase_31 AC 605 ms
44,144 KB
testcase_32 AC 588 ms
44,268 KB
testcase_33 AC 594 ms
44,136 KB
testcase_34 AC 593 ms
44,388 KB
testcase_35 AC 587 ms
44,264 KB
testcase_36 AC 460 ms
44,276 KB
testcase_37 AC 452 ms
44,128 KB
testcase_38 AC 591 ms
44,276 KB
testcase_39 AC 483 ms
44,388 KB
testcase_40 AC 495 ms
44,116 KB
testcase_41 AC 495 ms
44,004 KB
testcase_42 AC 446 ms
44,012 KB
testcase_43 AC 446 ms
44,384 KB
testcase_44 AC 460 ms
44,396 KB
testcase_45 AC 451 ms
44,136 KB
testcase_46 AC 495 ms
44,140 KB
testcase_47 AC 494 ms
44,276 KB
testcase_48 AC 485 ms
44,012 KB
testcase_49 AC 473 ms
44,008 KB
testcase_50 AC 494 ms
44,524 KB
testcase_51 AC 487 ms
44,016 KB
testcase_52 AC 510 ms
43,880 KB
testcase_53 AC 500 ms
44,136 KB
testcase_54 AC 503 ms
44,136 KB
testcase_55 AC 492 ms
44,424 KB
testcase_56 AC 467 ms
44,388 KB
testcase_57 AC 486 ms
44,396 KB
testcase_58 AC 488 ms
44,392 KB
testcase_59 AC 489 ms
44,520 KB
testcase_60 AC 483 ms
44,000 KB
testcase_61 AC 491 ms
44,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import numpy as np

read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

def mult(A, B):
    C = np.dot(A, B)
    C[C >= 1] = 1
    return C

def mat_pow(A, n):
    if n == 0:
        return np.eye(len(A), dtype=np.int64)
    X = mat_pow(A, n // 2)
    X = mult(X, X)
    return mult(A, X) if n & 1 else X

N, M, T = map(int, readline().split())
A = np.zeros((N, N), np.int64)
m = map(int, read().split())
for frm, to in zip(m, m):
    A[to, frm] += 1

B = mat_pow(A, T)
ans = B[:, 0].sum()
print(ans)
0