結果

問題 No.1340 おーじ君をさがせ
ユーザー shotoyooshotoyoo
提出日時 2021-01-15 22:10:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 823 ms / 2,000 ms
コード長 1,492 bytes
コンパイル時間 301 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 80,768 KB
最終ジャッジ日時 2024-05-05 21:48:03
合計ジャッジ時間 14,062 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,352 KB
testcase_01 AC 38 ms
52,736 KB
testcase_02 AC 37 ms
52,352 KB
testcase_03 AC 40 ms
52,736 KB
testcase_04 AC 38 ms
52,352 KB
testcase_05 AC 37 ms
52,352 KB
testcase_06 AC 37 ms
52,096 KB
testcase_07 AC 37 ms
52,480 KB
testcase_08 AC 38 ms
51,968 KB
testcase_09 AC 37 ms
51,968 KB
testcase_10 AC 51 ms
63,488 KB
testcase_11 AC 174 ms
76,288 KB
testcase_12 AC 72 ms
67,456 KB
testcase_13 AC 261 ms
76,928 KB
testcase_14 AC 298 ms
76,160 KB
testcase_15 AC 262 ms
76,288 KB
testcase_16 AC 67 ms
66,560 KB
testcase_17 AC 127 ms
75,776 KB
testcase_18 AC 180 ms
76,032 KB
testcase_19 AC 56 ms
63,488 KB
testcase_20 AC 48 ms
60,928 KB
testcase_21 AC 189 ms
76,544 KB
testcase_22 AC 823 ms
80,768 KB
testcase_23 AC 186 ms
76,288 KB
testcase_24 AC 706 ms
77,056 KB
testcase_25 AC 74 ms
73,856 KB
testcase_26 AC 66 ms
70,656 KB
testcase_27 AC 63 ms
68,736 KB
testcase_28 AC 80 ms
74,880 KB
testcase_29 AC 59 ms
66,560 KB
testcase_30 AC 206 ms
76,672 KB
testcase_31 AC 701 ms
77,312 KB
testcase_32 AC 651 ms
76,800 KB
testcase_33 AC 649 ms
77,056 KB
testcase_34 AC 589 ms
76,800 KB
testcase_35 AC 715 ms
77,312 KB
testcase_36 AC 43 ms
52,224 KB
testcase_37 AC 58 ms
65,152 KB
testcase_38 AC 705 ms
76,672 KB
testcase_39 AC 219 ms
76,672 KB
testcase_40 AC 227 ms
76,544 KB
testcase_41 AC 229 ms
76,544 KB
testcase_42 AC 43 ms
59,008 KB
testcase_43 AC 41 ms
58,240 KB
testcase_44 AC 45 ms
61,696 KB
testcase_45 AC 45 ms
60,288 KB
testcase_46 AC 175 ms
76,928 KB
testcase_47 AC 187 ms
76,544 KB
testcase_48 AC 209 ms
76,416 KB
testcase_49 AC 198 ms
76,416 KB
testcase_50 AC 197 ms
76,160 KB
testcase_51 AC 209 ms
76,416 KB
testcase_52 AC 343 ms
76,160 KB
testcase_53 AC 332 ms
76,288 KB
testcase_54 AC 342 ms
76,672 KB
testcase_55 AC 273 ms
76,672 KB
testcase_56 AC 46 ms
60,288 KB
testcase_57 AC 45 ms
60,544 KB
testcase_58 AC 37 ms
52,608 KB
testcase_59 AC 130 ms
70,912 KB
testcase_60 AC 40 ms
52,608 KB
testcase_61 AC 134 ms
70,912 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
if t==0:
    print(1)
else:
    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