結果

問題 No.1340 おーじ君をさがせ
ユーザー akasia_midoriakasia_midori
提出日時 2023-01-22 13:35:56
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 2,127 bytes
コンパイル時間 559 ms
コンパイル使用メモリ 87,300 KB
実行使用メモリ 131,208 KB
最終ジャッジ日時 2023-09-07 00:06:10
合計ジャッジ時間 5,550 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
75,740 KB
testcase_01 AC 69 ms
71,460 KB
testcase_02 AC 68 ms
71,436 KB
testcase_03 AC 69 ms
71,456 KB
testcase_04 AC 69 ms
71,436 KB
testcase_05 AC 68 ms
71,444 KB
testcase_06 AC 69 ms
71,368 KB
testcase_07 AC 68 ms
71,516 KB
testcase_08 AC 69 ms
71,708 KB
testcase_09 AC 68 ms
71,172 KB
testcase_10 TLE -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
testcase_54 -- -
testcase_55 -- -
testcase_56 -- -
testcase_57 -- -
testcase_58 -- -
testcase_59 -- -
testcase_60 -- -
testcase_61 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

def oi(): return int(input())
def os(): return input()
def mi(): return list(map(int, input().split()))

import sys
input = sys.stdin.readline
# import sys
# sys.setrecursionlimit(10**8)
# import pypyjit
# pypyjit.set_param('max_unroll_recursion=-1')
input_count = 0

def prod_func(a,b):
    return a*b
def add_func(a,b):
    return a+b

class MATRIX:
    def __init__(self, prod_func, add_func):
        self.prod_func = prod_func
        self.add_func = add_func
        
    def dot(self, A,B):
        if len(A[0]) != len(B):
            return None
        out = []
        for ay in range(len(A)):
            temp = []
            for bx in range(len(B[0])):
                sums = 0
                for ax in range(len(A[0])):
                    sums += self.prod_func(A[ay][ax], B[ax][bx])
                temp.append(sums)
            out.append(temp)
        return out

    def sum(self, A,B):
        if not(len(A) == len(B) and len(A[0]) == len(B[0])):
            return None
        out = []
        for ay in range(len(A)):
            temp = []
            for ax in range(len(A[0])):
                temp.append(self.add_func(A[ay][ax], B[ay][ax]))
            out.append(temp)
        return out

    def prod(self, A,B):
        if not(len(A) == len(B) and len(A[0]) == len(B[0])):
            return None
        out = []
        for ay in range(len(A)):
            temp = []
            for ax in range(len(A[0])):
                temp.append(self.prod_func(A[ay][ax], B[ay][ax]))
            out.append(temp)
        return out

    # 正方行列AをN乗する。
    def ruijou(self, A, N):
        out = [[0] * len(A) for _ in range(len(A))]
        for i in range(len(A)):
            out[i][i] = 1

        for i in list(bin(N)[2:][::-1]):
            if i=="1":
                out = self.dot(out, A)
            A = self.dot(A,A)
        return out

input_count = 0
N,M,T = mi()
mat = [[0] * N for _ in range(N)]
MAT = MATRIX(prod_func, add_func)
for i in range(M):
    a,b = mi()
    mat[a][b] = 1
out = MAT.ruijou(mat, T)
count = 0
for o in out[0]:
    if o>0:
        count += 1
print(count)
0