結果

問題 No.1340 おーじ君をさがせ
ユーザー shotoyooshotoyoo
提出日時 2021-01-15 22:06:14
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 1,428 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 80,384 KB
最終ジャッジ日時 2024-05-05 02:42:24
合計ジャッジ時間 13,856 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,660 KB
testcase_01 AC 35 ms
54,624 KB
testcase_02 AC 36 ms
52,960 KB
testcase_03 AC 34 ms
52,588 KB
testcase_04 AC 33 ms
53,120 KB
testcase_05 AC 33 ms
53,156 KB
testcase_06 AC 34 ms
53,600 KB
testcase_07 AC 34 ms
52,952 KB
testcase_08 RE -
testcase_09 AC 40 ms
52,744 KB
testcase_10 AC 50 ms
65,252 KB
testcase_11 AC 184 ms
76,132 KB
testcase_12 AC 69 ms
68,096 KB
testcase_13 AC 266 ms
76,800 KB
testcase_14 AC 312 ms
76,288 KB
testcase_15 AC 262 ms
76,496 KB
testcase_16 AC 74 ms
67,072 KB
testcase_17 AC 130 ms
76,288 KB
testcase_18 AC 178 ms
76,212 KB
testcase_19 AC 51 ms
63,616 KB
testcase_20 AC 43 ms
61,568 KB
testcase_21 AC 177 ms
76,628 KB
testcase_22 AC 874 ms
80,384 KB
testcase_23 AC 188 ms
76,644 KB
testcase_24 AC 733 ms
77,108 KB
testcase_25 AC 82 ms
74,112 KB
testcase_26 AC 74 ms
70,784 KB
testcase_27 AC 70 ms
68,736 KB
testcase_28 AC 74 ms
74,932 KB
testcase_29 AC 51 ms
67,200 KB
testcase_30 AC 191 ms
76,288 KB
testcase_31 AC 785 ms
77,124 KB
testcase_32 AC 668 ms
76,964 KB
testcase_33 AC 629 ms
77,108 KB
testcase_34 AC 577 ms
76,928 KB
testcase_35 AC 698 ms
77,568 KB
testcase_36 AC 36 ms
52,992 KB
testcase_37 AC 45 ms
65,664 KB
testcase_38 AC 684 ms
77,152 KB
testcase_39 AC 208 ms
76,672 KB
testcase_40 AC 214 ms
76,776 KB
testcase_41 AC 222 ms
76,580 KB
testcase_42 AC 42 ms
59,776 KB
testcase_43 AC 41 ms
58,368 KB
testcase_44 AC 46 ms
61,696 KB
testcase_45 AC 45 ms
60,288 KB
testcase_46 AC 165 ms
76,544 KB
testcase_47 AC 174 ms
76,800 KB
testcase_48 AC 191 ms
76,796 KB
testcase_49 AC 186 ms
76,544 KB
testcase_50 AC 183 ms
76,352 KB
testcase_51 AC 189 ms
76,288 KB
testcase_52 AC 316 ms
76,288 KB
testcase_53 AC 313 ms
76,160 KB
testcase_54 AC 328 ms
76,800 KB
testcase_55 AC 260 ms
76,636 KB
testcase_56 AC 43 ms
60,672 KB
testcase_57 AC 42 ms
60,672 KB
testcase_58 AC 38 ms
52,864 KB
testcase_59 AC 128 ms
70,912 KB
testcase_60 RE -
testcase_61 AC 125 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を求める
    """
    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