結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,480 KB
testcase_01 AC 44 ms
52,480 KB
testcase_02 AC 37 ms
52,352 KB
testcase_03 AC 37 ms
52,352 KB
testcase_04 WA -
testcase_05 AC 39 ms
52,096 KB
testcase_06 WA -
testcase_07 AC 42 ms
52,608 KB
testcase_08 AC 40 ms
51,840 KB
testcase_09 AC 44 ms
52,224 KB
testcase_10 AC 54 ms
63,232 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 263 ms
76,672 KB
testcase_14 AC 349 ms
75,904 KB
testcase_15 AC 296 ms
76,032 KB
testcase_16 WA -
testcase_17 AC 141 ms
75,648 KB
testcase_18 AC 177 ms
76,032 KB
testcase_19 AC 54 ms
63,744 KB
testcase_20 WA -
testcase_21 AC 185 ms
76,544 KB
testcase_22 AC 833 ms
80,640 KB
testcase_23 AC 190 ms
76,544 KB
testcase_24 AC 714 ms
76,800 KB
testcase_25 AC 74 ms
73,472 KB
testcase_26 AC 65 ms
70,400 KB
testcase_27 AC 61 ms
68,480 KB
testcase_28 AC 80 ms
74,496 KB
testcase_29 AC 56 ms
66,560 KB
testcase_30 AC 202 ms
76,288 KB
testcase_31 AC 707 ms
76,800 KB
testcase_32 AC 659 ms
77,056 KB
testcase_33 AC 650 ms
76,928 KB
testcase_34 AC 593 ms
77,056 KB
testcase_35 AC 744 ms
77,056 KB
testcase_36 AC 39 ms
52,096 KB
testcase_37 AC 53 ms
65,280 KB
testcase_38 AC 713 ms
77,184 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 47 ms
61,568 KB
testcase_45 AC 45 ms
60,288 KB
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 AC 209 ms
76,032 KB
testcase_50 AC 204 ms
75,904 KB
testcase_51 AC 207 ms
76,288 KB
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 AC 47 ms
60,288 KB
testcase_57 AC 45 ms
60,288 KB
testcase_58 AC 36 ms
52,480 KB
testcase_59 WA -
testcase_60 AC 36 ms
51,968 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