結果

問題 No.1340 おーじ君をさがせ
ユーザー maspymaspy
提出日時 2020-09-26 14:53:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 759 bytes
コンパイル時間 236 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,904 KB
最終ジャッジ日時 2024-05-05 02:27:30
合計ジャッジ時間 4,881 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,624 KB
testcase_01 WA -
testcase_02 AC 25 ms
10,624 KB
testcase_03 AC 25 ms
10,880 KB
testcase_04 AC 26 ms
10,624 KB
testcase_05 AC 27 ms
10,624 KB
testcase_06 AC 26 ms
10,624 KB
testcase_07 AC 26 ms
10,752 KB
testcase_08 AC 26 ms
10,624 KB
testcase_09 WA -
testcase_10 AC 27 ms
10,624 KB
testcase_11 WA -
testcase_12 AC 38 ms
10,752 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 33 ms
10,752 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 27 ms
10,752 KB
testcase_21 AC 82 ms
11,520 KB
testcase_22 AC 128 ms
11,136 KB
testcase_23 AC 86 ms
11,776 KB
testcase_24 AC 171 ms
11,136 KB
testcase_25 AC 41 ms
11,520 KB
testcase_26 AC 35 ms
11,008 KB
testcase_27 AC 33 ms
11,008 KB
testcase_28 AC 42 ms
11,520 KB
testcase_29 AC 31 ms
10,752 KB
testcase_30 AC 83 ms
11,776 KB
testcase_31 AC 186 ms
11,904 KB
testcase_32 AC 121 ms
11,904 KB
testcase_33 AC 122 ms
11,904 KB
testcase_34 AC 120 ms
11,904 KB
testcase_35 AC 135 ms
11,904 KB
testcase_36 WA -
testcase_37 AC 30 ms
10,880 KB
testcase_38 AC 115 ms
10,880 KB
testcase_39 AC 58 ms
11,904 KB
testcase_40 AC 59 ms
11,904 KB
testcase_41 AC 58 ms
11,776 KB
testcase_42 AC 28 ms
10,496 KB
testcase_43 AC 27 ms
10,624 KB
testcase_44 WA -
testcase_45 WA -
testcase_46 AC 49 ms
10,880 KB
testcase_47 AC 52 ms
10,880 KB
testcase_48 AC 54 ms
11,136 KB
testcase_49 AC 47 ms
10,880 KB
testcase_50 AC 47 ms
10,752 KB
testcase_51 AC 47 ms
10,752 KB
testcase_52 AC 65 ms
10,752 KB
testcase_53 AC 65 ms
10,752 KB
testcase_54 AC 64 ms
10,752 KB
testcase_55 AC 64 ms
10,752 KB
testcase_56 AC 26 ms
10,624 KB
testcase_57 AC 25 ms
10,752 KB
testcase_58 AC 26 ms
10,752 KB
testcase_59 AC 38 ms
10,752 KB
testcase_60 AC 25 ms
10,752 KB
testcase_61 AC 38 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""bit並列化"""
import sys

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

def mult(A, B):
    N = len(A)
    C = [0] * N
    # A[i,j] == 1 のとき、 C[i,:] |= B[j,:] となるので
    for i in range(N):
        for j in range(N):
            if A[i] & (1 << j):
                C[i] |= B[j]
    return C

def mat_pow(A, n):
    N = len(A)
    if n == 0:
        return [1 << n for n in range(N)]
    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 = [0] * N
m = map(int, read().split())
for frm, to in zip(m, m):
    A[frm] |= 1 << to

B = mat_pow(A, T)
ans = bin(B[0]).count('1')
if ans == 0:
    ans = -1
print(ans)
0