結果

問題 No.1340 おーじ君をさがせ
ユーザー tktk_snsntktk_snsn
提出日時 2021-05-28 15:56:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 744 ms / 2,000 ms
コード長 851 bytes
コンパイル時間 397 ms
コンパイル使用メモリ 81,536 KB
実行使用メモリ 76,928 KB
最終ジャッジ日時 2024-11-07 04:42:20
合計ジャッジ時間 14,713 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
57,984 KB
testcase_01 AC 47 ms
57,728 KB
testcase_02 AC 42 ms
51,968 KB
testcase_03 AC 43 ms
51,968 KB
testcase_04 AC 43 ms
52,608 KB
testcase_05 AC 43 ms
51,712 KB
testcase_06 AC 43 ms
52,096 KB
testcase_07 AC 43 ms
52,352 KB
testcase_08 AC 43 ms
51,840 KB
testcase_09 AC 42 ms
51,840 KB
testcase_10 AC 55 ms
61,184 KB
testcase_11 AC 190 ms
76,160 KB
testcase_12 AC 79 ms
66,304 KB
testcase_13 AC 160 ms
75,776 KB
testcase_14 AC 323 ms
75,904 KB
testcase_15 AC 283 ms
75,904 KB
testcase_16 AC 72 ms
65,536 KB
testcase_17 AC 139 ms
75,776 KB
testcase_18 AC 191 ms
75,904 KB
testcase_19 AC 62 ms
63,872 KB
testcase_20 AC 55 ms
61,056 KB
testcase_21 AC 197 ms
75,904 KB
testcase_22 AC 415 ms
76,544 KB
testcase_23 AC 202 ms
76,032 KB
testcase_24 AC 729 ms
76,160 KB
testcase_25 AC 79 ms
70,400 KB
testcase_26 AC 72 ms
68,224 KB
testcase_27 AC 69 ms
67,072 KB
testcase_28 AC 87 ms
71,808 KB
testcase_29 AC 67 ms
66,816 KB
testcase_30 AC 210 ms
76,032 KB
testcase_31 AC 744 ms
76,800 KB
testcase_32 AC 675 ms
76,672 KB
testcase_33 AC 668 ms
76,544 KB
testcase_34 AC 610 ms
76,416 KB
testcase_35 AC 724 ms
76,416 KB
testcase_36 AC 44 ms
52,480 KB
testcase_37 AC 55 ms
61,568 KB
testcase_38 AC 723 ms
76,928 KB
testcase_39 AC 237 ms
76,544 KB
testcase_40 AC 244 ms
76,544 KB
testcase_41 AC 246 ms
76,544 KB
testcase_42 AC 49 ms
59,520 KB
testcase_43 AC 51 ms
59,776 KB
testcase_44 AC 52 ms
60,160 KB
testcase_45 AC 51 ms
59,904 KB
testcase_46 AC 199 ms
76,160 KB
testcase_47 AC 206 ms
76,032 KB
testcase_48 AC 225 ms
76,288 KB
testcase_49 AC 217 ms
75,648 KB
testcase_50 AC 217 ms
75,648 KB
testcase_51 AC 217 ms
75,904 KB
testcase_52 AC 357 ms
75,904 KB
testcase_53 AC 348 ms
75,904 KB
testcase_54 AC 357 ms
76,032 KB
testcase_55 AC 294 ms
76,416 KB
testcase_56 AC 53 ms
60,800 KB
testcase_57 AC 53 ms
60,160 KB
testcase_58 AC 49 ms
57,728 KB
testcase_59 AC 150 ms
71,168 KB
testcase_60 AC 42 ms
51,840 KB
testcase_61 AC 151 ms
71,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.buffer.readline
sys.setrecursionlimit(10 ** 7)


def mat_mul(A, B):
    res = [[0] * len(B[0]) for _ in range(len(A))]
    for i in range(len(A)):
        for k in range(len(A[0])):
            for j in range(len(B[0])):
                res[i][j] |= (A[i][k] & B[k][j])
    return res


def mat_pow(A, n):
    size = len(A)
    res = [[0] * size for _ in range(size)]
    for i in range(size):
        res[i][i] = 1
    while n:
        if n & 1:
            res = mat_mul(res, A)
        A = mat_mul(A, A)
        n >>= 1
    return res


N, M, T = map(int, input().split())
deg = [0] * N
A = [[0]*(N+1) for _ in range(N+1)]
for _ in range(M):
    a, b = map(int, input().split())
    deg[a] += 1
    A[a][b] = 1
for i in range(N):
    if not deg[i]:
        A[i][N] = 1

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