結果

問題 No.1340 おーじ君をさがせ
ユーザー brthyyjpbrthyyjp
提出日時 2021-01-16 04:09:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,814 ms / 2,000 ms
コード長 1,047 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 80,768 KB
最終ジャッジ日時 2024-05-05 04:47:06
合計ジャッジ時間 28,624 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,096 KB
testcase_01 AC 36 ms
52,224 KB
testcase_02 AC 36 ms
52,224 KB
testcase_03 AC 36 ms
52,224 KB
testcase_04 AC 35 ms
51,840 KB
testcase_05 AC 35 ms
52,224 KB
testcase_06 AC 36 ms
52,096 KB
testcase_07 AC 37 ms
52,224 KB
testcase_08 AC 35 ms
51,968 KB
testcase_09 AC 35 ms
51,840 KB
testcase_10 AC 56 ms
64,384 KB
testcase_11 AC 369 ms
75,776 KB
testcase_12 AC 104 ms
67,328 KB
testcase_13 AC 423 ms
77,056 KB
testcase_14 AC 722 ms
76,160 KB
testcase_15 AC 608 ms
76,160 KB
testcase_16 AC 96 ms
66,560 KB
testcase_17 AC 246 ms
75,776 KB
testcase_18 AC 383 ms
76,288 KB
testcase_19 AC 63 ms
64,000 KB
testcase_20 AC 48 ms
61,440 KB
testcase_21 AC 402 ms
76,544 KB
testcase_22 AC 1,414 ms
80,768 KB
testcase_23 AC 403 ms
76,672 KB
testcase_24 AC 1,766 ms
77,440 KB
testcase_25 AC 110 ms
76,544 KB
testcase_26 AC 95 ms
76,544 KB
testcase_27 AC 91 ms
76,032 KB
testcase_28 AC 122 ms
76,416 KB
testcase_29 AC 74 ms
73,600 KB
testcase_30 AC 427 ms
76,288 KB
testcase_31 AC 1,763 ms
77,952 KB
testcase_32 AC 1,632 ms
77,184 KB
testcase_33 AC 1,629 ms
77,312 KB
testcase_34 AC 1,481 ms
77,184 KB
testcase_35 AC 1,814 ms
77,440 KB
testcase_36 AC 37 ms
52,352 KB
testcase_37 AC 68 ms
72,960 KB
testcase_38 AC 1,755 ms
77,056 KB
testcase_39 AC 512 ms
76,672 KB
testcase_40 AC 526 ms
76,288 KB
testcase_41 AC 524 ms
76,544 KB
testcase_42 AC 44 ms
59,776 KB
testcase_43 AC 44 ms
59,392 KB
testcase_44 AC 49 ms
61,312 KB
testcase_45 AC 47 ms
60,416 KB
testcase_46 AC 396 ms
76,544 KB
testcase_47 AC 420 ms
76,672 KB
testcase_48 AC 456 ms
76,416 KB
testcase_49 AC 444 ms
76,160 KB
testcase_50 AC 448 ms
75,776 KB
testcase_51 AC 439 ms
76,032 KB
testcase_52 AC 795 ms
76,160 KB
testcase_53 AC 779 ms
76,160 KB
testcase_54 AC 910 ms
76,160 KB
testcase_55 AC 649 ms
76,288 KB
testcase_56 AC 49 ms
60,800 KB
testcase_57 AC 47 ms
60,800 KB
testcase_58 AC 37 ms
52,480 KB
testcase_59 AC 275 ms
71,808 KB
testcase_60 AC 37 ms
51,968 KB
testcase_61 AC 279 ms
72,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1+(1<<30)

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