結果

問題 No.1340 おーじ君をさがせ
ユーザー brthyyjpbrthyyjp
提出日時 2021-01-16 03:54:39
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,046 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 80,640 KB
最終ジャッジ日時 2024-05-05 04:33:22
合計ジャッジ時間 32,789 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
52,096 KB
testcase_01 AC 43 ms
52,480 KB
testcase_02 AC 43 ms
51,968 KB
testcase_03 AC 42 ms
52,224 KB
testcase_04 AC 43 ms
52,224 KB
testcase_05 AC 42 ms
52,352 KB
testcase_06 AC 42 ms
52,224 KB
testcase_07 AC 43 ms
52,480 KB
testcase_08 AC 41 ms
52,096 KB
testcase_09 AC 46 ms
51,968 KB
testcase_10 AC 61 ms
63,616 KB
testcase_11 AC 423 ms
76,032 KB
testcase_12 AC 113 ms
67,328 KB
testcase_13 AC 474 ms
77,056 KB
testcase_14 AC 814 ms
76,288 KB
testcase_15 AC 684 ms
76,288 KB
testcase_16 AC 100 ms
66,432 KB
testcase_17 AC 269 ms
76,160 KB
testcase_18 AC 429 ms
75,904 KB
testcase_19 AC 72 ms
63,872 KB
testcase_20 AC 55 ms
61,440 KB
testcase_21 AC 455 ms
76,416 KB
testcase_22 AC 1,699 ms
80,640 KB
testcase_23 AC 460 ms
76,288 KB
testcase_24 TLE -
testcase_25 AC 122 ms
76,160 KB
testcase_26 AC 107 ms
76,288 KB
testcase_27 AC 102 ms
76,416 KB
testcase_28 AC 141 ms
76,032 KB
testcase_29 AC 85 ms
73,344 KB
testcase_30 AC 492 ms
76,544 KB
testcase_31 TLE -
testcase_32 AC 1,868 ms
76,928 KB
testcase_33 AC 1,859 ms
77,184 KB
testcase_34 AC 1,664 ms
77,184 KB
testcase_35 TLE -
testcase_36 AC 42 ms
52,352 KB
testcase_37 AC 78 ms
72,960 KB
testcase_38 AC 1,992 ms
77,696 KB
testcase_39 AC 566 ms
76,544 KB
testcase_40 AC 591 ms
76,928 KB
testcase_41 AC 592 ms
76,544 KB
testcase_42 AC 51 ms
59,776 KB
testcase_43 AC 49 ms
59,264 KB
testcase_44 AC 54 ms
61,440 KB
testcase_45 AC 52 ms
60,544 KB
testcase_46 AC 452 ms
76,672 KB
testcase_47 AC 475 ms
76,288 KB
testcase_48 AC 528 ms
76,416 KB
testcase_49 AC 499 ms
76,032 KB
testcase_50 AC 500 ms
75,904 KB
testcase_51 AC 500 ms
76,288 KB
testcase_52 AC 907 ms
76,160 KB
testcase_53 AC 883 ms
76,288 KB
testcase_54 AC 908 ms
76,032 KB
testcase_55 AC 722 ms
76,800 KB
testcase_56 AC 53 ms
60,800 KB
testcase_57 WA -
testcase_58 AC 42 ms
52,608 KB
testcase_59 AC 313 ms
71,936 KB
testcase_60 AC 41 ms
51,968 KB
testcase_61 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 10**9+7

def main():

    n, m, t = map(int, input().split())
    A = [[0]*n for i in range(n)]
    for i in range(m):
        a, b = map(int, input().split())
        A[b][a] = 1
    #print(A)
    # A*B
    def mat_mul(A, B, mod):
        C = [[0]*len(B[0]) for i in range(len(A))]
        for i in range(len(A)):
            for k in range(len(B)):
                for j in range(len(B[0])):
                    C[i][j] = (C[i][j] + A[i][k]*B[k][j])%mod
        return C

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

    X = [0]*n
    X[0] = 1
    A = mat_pow(A, t, mod)
    ans = 0
    for i in range(n):
        s = 0
        for j in range(n):
            s += A[i][j]*X[j]
        if s:
            ans += 1
    #print(A)
    print(ans)

if __name__ == '__main__':
    main()
0