結果

問題 No.1340 おーじ君をさがせ
ユーザー shotoyooshotoyoo
提出日時 2021-01-15 22:08:20
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,458 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 80,128 KB
最終ジャッジ日時 2024-05-05 02:43:54
合計ジャッジ時間 14,151 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,480 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 40 ms
52,096 KB
testcase_03 AC 42 ms
52,608 KB
testcase_04 AC 40 ms
52,352 KB
testcase_05 AC 41 ms
52,480 KB
testcase_06 AC 42 ms
52,096 KB
testcase_07 AC 40 ms
52,224 KB
testcase_08 WA -
testcase_09 AC 45 ms
52,480 KB
testcase_10 AC 55 ms
63,488 KB
testcase_11 AC 183 ms
76,032 KB
testcase_12 AC 71 ms
67,712 KB
testcase_13 AC 280 ms
76,800 KB
testcase_14 AC 317 ms
76,032 KB
testcase_15 AC 267 ms
76,544 KB
testcase_16 AC 66 ms
66,688 KB
testcase_17 AC 128 ms
75,904 KB
testcase_18 AC 179 ms
76,160 KB
testcase_19 AC 54 ms
63,232 KB
testcase_20 AC 52 ms
60,928 KB
testcase_21 AC 187 ms
76,160 KB
testcase_22 AC 848 ms
80,128 KB
testcase_23 AC 190 ms
76,288 KB
testcase_24 AC 713 ms
76,800 KB
testcase_25 AC 80 ms
73,472 KB
testcase_26 AC 73 ms
70,272 KB
testcase_27 AC 70 ms
68,992 KB
testcase_28 AC 84 ms
74,752 KB
testcase_29 AC 64 ms
66,560 KB
testcase_30 AC 201 ms
76,416 KB
testcase_31 AC 706 ms
76,928 KB
testcase_32 AC 672 ms
76,928 KB
testcase_33 AC 650 ms
76,928 KB
testcase_34 AC 588 ms
76,928 KB
testcase_35 AC 722 ms
77,184 KB
testcase_36 AC 38 ms
52,224 KB
testcase_37 AC 52 ms
65,664 KB
testcase_38 AC 723 ms
77,312 KB
testcase_39 AC 228 ms
76,672 KB
testcase_40 AC 227 ms
76,672 KB
testcase_41 AC 234 ms
76,544 KB
testcase_42 AC 43 ms
59,008 KB
testcase_43 AC 42 ms
58,368 KB
testcase_44 AC 47 ms
61,184 KB
testcase_45 AC 45 ms
60,544 KB
testcase_46 AC 182 ms
76,544 KB
testcase_47 AC 192 ms
76,544 KB
testcase_48 AC 214 ms
76,672 KB
testcase_49 AC 204 ms
76,288 KB
testcase_50 AC 201 ms
76,160 KB
testcase_51 AC 199 ms
76,416 KB
testcase_52 AC 344 ms
76,416 KB
testcase_53 AC 334 ms
76,032 KB
testcase_54 AC 338 ms
76,160 KB
testcase_55 AC 281 ms
76,416 KB
testcase_56 AC 48 ms
60,672 KB
testcase_57 AC 47 ms
60,672 KB
testcase_58 AC 39 ms
52,608 KB
testcase_59 AC 134 ms
71,040 KB
testcase_60 AC 37 ms
52,352 KB
testcase_61 AC 131 ms
70,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda : sys.stdin.readline().rstrip()

sys.setrecursionlimit(2*10**5+10)
write = lambda x: sys.stdout.write(x+"\n")
_print = lambda *x: print(*x, file=sys.stderr)

### 行列積 matrix multiplication
### 繰り返し2乗法 kurikae

M = 10**9+7
def mul(a,b):
    """行列a,bの積
    aかbがNone のとき、単位行列として扱う
    """
    if a is None:
        return b
    elif b is None:
        return a
    n,m = len(a), len(a[0])
    k,l = len(b), len(b[0])
    # k==m
    out = [[0]*l for _ in range(n)]
    for i in range(n):
        for j in range(l):
            for p in range(m):
                out[i][j] |= (a[i][p]&b[p][j])
    return out
def mulk(m, k):
    """a^kを求める
    """
    if k==0:
        return m
    ans = None
    tmp = m
    while k>0:
        if k&1:
            ans = mul(ans, tmp)
        tmp = mul(tmp, tmp)
        k = k>>1
    return ans
def mul2(m,a):
    """行列と配列の積
    """
    k,l = len(m), len(m[0])
#     ll = len(a)
    ans = [0]*k
    for i in range(k):
        for j in range(l):
            ans[i] |= (m[i][j] & a[j])
    return ans

n,m,t = list(map(int, input().split()))
val = [[0]*n for _ in range(n)]
for i in range(m):
    a,b = map(int, input().split())
    val[a][b] = 1
valt = mulk(val,t)
b = [0]*n
b[0] = 1
valtt = [[0]*n for _ in range(n)]
for i in range(n):
    for j in range(n):
        valtt[i][j] = valt[j][i]
ans = mul2(valtt,b)
print(sum(ans))
0