結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 446 ms
44,248 KB
testcase_01 AC 468 ms
44,244 KB
testcase_02 AC 487 ms
44,372 KB
testcase_03 AC 475 ms
44,496 KB
testcase_04 AC 460 ms
44,504 KB
testcase_05 AC 469 ms
44,376 KB
testcase_06 AC 468 ms
44,464 KB
testcase_07 AC 481 ms
44,380 KB
testcase_08 AC 481 ms
44,240 KB
testcase_09 AC 487 ms
44,248 KB
testcase_10 AC 485 ms
44,120 KB
testcase_11 AC 503 ms
44,372 KB
testcase_12 AC 478 ms
44,368 KB
testcase_13 AC 486 ms
44,376 KB
testcase_14 AC 489 ms
44,384 KB
testcase_15 AC 496 ms
44,496 KB
testcase_16 AC 482 ms
44,372 KB
testcase_17 AC 559 ms
44,632 KB
testcase_18 AC 470 ms
43,988 KB
testcase_19 AC 457 ms
44,500 KB
testcase_20 AC 452 ms
44,124 KB
testcase_21 AC 486 ms
44,504 KB
testcase_22 AC 511 ms
44,120 KB
testcase_23 AC 503 ms
44,124 KB
testcase_24 AC 518 ms
44,496 KB
testcase_25 AC 482 ms
44,244 KB
testcase_26 AC 476 ms
44,116 KB
testcase_27 AC 488 ms
44,256 KB
testcase_28 AC 474 ms
44,360 KB
testcase_29 AC 472 ms
44,128 KB
testcase_30 AC 521 ms
44,628 KB
testcase_31 AC 568 ms
44,380 KB
testcase_32 AC 566 ms
44,244 KB
testcase_33 AC 546 ms
44,512 KB
testcase_34 AC 532 ms
44,372 KB
testcase_35 AC 565 ms
44,116 KB
testcase_36 AC 487 ms
44,368 KB
testcase_37 AC 473 ms
44,372 KB
testcase_38 AC 551 ms
44,372 KB
testcase_39 AC 497 ms
43,992 KB
testcase_40 AC 484 ms
44,376 KB
testcase_41 AC 484 ms
44,124 KB
testcase_42 AC 488 ms
43,996 KB
testcase_43 AC 468 ms
44,244 KB
testcase_44 AC 466 ms
44,244 KB
testcase_45 AC 465 ms
44,628 KB
testcase_46 AC 478 ms
44,244 KB
testcase_47 AC 480 ms
44,376 KB
testcase_48 AC 476 ms
44,116 KB
testcase_49 AC 479 ms
44,376 KB
testcase_50 AC 473 ms
44,376 KB
testcase_51 AC 486 ms
43,996 KB
testcase_52 AC 500 ms
44,304 KB
testcase_53 AC 502 ms
44,500 KB
testcase_54 AC 496 ms
44,116 KB
testcase_55 AC 511 ms
44,504 KB
testcase_56 AC 475 ms
44,628 KB
testcase_57 AC 464 ms
44,240 KB
testcase_58 AC 464 ms
44,628 KB
testcase_59 AC 464 ms
44,120 KB
testcase_60 AC 465 ms
43,860 KB
testcase_61 AC 487 ms
44,508 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""bit並列化"""
import sys
import numpy as np

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

K = 60


def mult(A, B):
    N = len(A)
    C = np.zeros_like(A)
    # A[i,j] == 1 のとき、 C[i,:] |= B[j,:] となるので
    for j in range(N):
        add_to = (A[:, j // K] & (1 << j % K)) > 0
        C |= add_to[:, None] * B[j]
    return C


def mat_pow(A, n):
    N = len(A)
    if n == 1:
        return A
    if n == 0:
        B = np.zeros_like(A)
        for i in range(N):
            B[i, i // K] = 1 << i % K
        return B
    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 // K + 1), np.int64)
m = map(int, read().split())
for frm, to in zip(m, m):
    A[frm, to // K] |= 1 << to % K

B = mat_pow(A, T)
ans = 0
for x in B[0]:
    ans += bin(x).count('1')
print(ans)
0