結果

問題 No.1340 おーじ君をさがせ
ユーザー ayaoniayaoni
提出日時 2021-01-16 02:39:53
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,243 bytes
コンパイル時間 312 ms
コンパイル使用メモリ 82,720 KB
実行使用メモリ 80,768 KB
最終ジャッジ日時 2024-11-26 20:58:32
合計ジャッジ時間 15,325 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,224 KB
testcase_01 AC 40 ms
52,864 KB
testcase_02 AC 40 ms
51,968 KB
testcase_03 AC 40 ms
52,480 KB
testcase_04 WA -
testcase_05 AC 40 ms
52,352 KB
testcase_06 WA -
testcase_07 AC 44 ms
52,608 KB
testcase_08 AC 40 ms
52,608 KB
testcase_09 AC 39 ms
52,096 KB
testcase_10 AC 52 ms
63,744 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 285 ms
76,672 KB
testcase_14 AC 329 ms
76,032 KB
testcase_15 AC 282 ms
76,160 KB
testcase_16 WA -
testcase_17 AC 132 ms
75,904 KB
testcase_18 AC 190 ms
76,160 KB
testcase_19 AC 57 ms
63,444 KB
testcase_20 WA -
testcase_21 AC 198 ms
76,416 KB
testcase_22 AC 918 ms
80,768 KB
testcase_23 AC 196 ms
76,416 KB
testcase_24 AC 779 ms
77,056 KB
testcase_25 AC 70 ms
73,856 KB
testcase_26 AC 66 ms
70,528 KB
testcase_27 AC 63 ms
68,736 KB
testcase_28 AC 81 ms
74,496 KB
testcase_29 AC 56 ms
66,944 KB
testcase_30 AC 209 ms
76,396 KB
testcase_31 AC 785 ms
77,056 KB
testcase_32 AC 718 ms
77,056 KB
testcase_33 AC 715 ms
77,184 KB
testcase_34 AC 653 ms
76,800 KB
testcase_35 AC 783 ms
77,312 KB
testcase_36 AC 39 ms
52,224 KB
testcase_37 AC 50 ms
65,664 KB
testcase_38 AC 784 ms
77,184 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 48 ms
61,056 KB
testcase_45 AC 47 ms
60,416 KB
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 AC 217 ms
76,484 KB
testcase_50 AC 216 ms
76,032 KB
testcase_51 AC 218 ms
76,416 KB
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 AC 47 ms
60,800 KB
testcase_57 AC 48 ms
60,544 KB
testcase_58 AC 41 ms
52,864 KB
testcase_59 WA -
testcase_60 AC 39 ms
52,224 KB
testcase_61 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10**7)
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int,sys.stdin.readline().rstrip().split())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))
def LI2(): return list(map(int,sys.stdin.readline().rstrip()))
def S(): return sys.stdin.readline().rstrip()
def LS(): return list(sys.stdin.readline().rstrip().split())
def LS2(): return list(sys.stdin.readline().rstrip())


def matrix_multiplication(A,B):
    l = len(A)
    m = len(B)
    n = len(B[0])
    C = [[0]*n for _ in range(l)]
    for i in range(l):
        for j in range(n):
            for k in range(m):
                C[i][j] |= A[i][k] & B[k][j]
    return C


def matrix_power(A,n):
    l = len(A)
    C = [[0]*l for _ in range(l)]
    for i in range(l):
        C[i][i] = 1
    while n > 0:
        if n % 2 == 1:
            C = matrix_multiplication(C,A)
        A = matrix_multiplication(A,A)
        n >>= 1
    return C


N,M,T = MI()
Graph = [[0]*N for _ in range(N)]
for _ in range(M):
    a,b = MI()
    Graph[a][b] = 1

X = matrix_power(Graph,T)
initial_state = [[1]]+[[0]]*(N-1)

ANS = matrix_multiplication(X,initial_state)
ans = 0
for i in range(N):
    ans += ANS[i][0]

print(ans)
0