結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,480 KB
testcase_01 AC 34 ms
52,480 KB
testcase_02 AC 34 ms
52,480 KB
testcase_03 AC 34 ms
52,096 KB
testcase_04 WA -
testcase_05 AC 33 ms
52,096 KB
testcase_06 WA -
testcase_07 AC 35 ms
52,352 KB
testcase_08 RE -
testcase_09 AC 34 ms
52,352 KB
testcase_10 AC 45 ms
63,744 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 254 ms
76,672 KB
testcase_14 AC 305 ms
76,032 KB
testcase_15 AC 242 ms
75,776 KB
testcase_16 WA -
testcase_17 AC 117 ms
75,648 KB
testcase_18 AC 163 ms
76,160 KB
testcase_19 AC 46 ms
63,360 KB
testcase_20 WA -
testcase_21 AC 170 ms
75,904 KB
testcase_22 AC 811 ms
80,128 KB
testcase_23 AC 174 ms
76,288 KB
testcase_24 AC 678 ms
77,184 KB
testcase_25 AC 63 ms
73,856 KB
testcase_26 AC 58 ms
69,760 KB
testcase_27 AC 54 ms
68,608 KB
testcase_28 AC 67 ms
73,984 KB
testcase_29 AC 48 ms
66,560 KB
testcase_30 AC 181 ms
76,200 KB
testcase_31 AC 686 ms
76,544 KB
testcase_32 AC 631 ms
77,184 KB
testcase_33 AC 613 ms
76,892 KB
testcase_34 AC 573 ms
76,800 KB
testcase_35 AC 682 ms
76,928 KB
testcase_36 AC 39 ms
52,096 KB
testcase_37 AC 44 ms
65,408 KB
testcase_38 AC 684 ms
76,672 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 47 ms
60,800 KB
testcase_45 AC 44 ms
60,160 KB
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 AC 179 ms
76,288 KB
testcase_50 AC 184 ms
76,160 KB
testcase_51 AC 185 ms
75,648 KB
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 AC 43 ms
60,416 KB
testcase_57 AC 42 ms
60,160 KB
testcase_58 AC 37 ms
52,352 KB
testcase_59 WA -
testcase_60 RE -
testcase_61 WA -
権限があれば一括ダウンロードができます

ソースコード

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
ans = mul2(valt,b)
print(sum(ans))
0