結果

問題 No.1340 おーじ君をさがせ
ユーザー maspymaspy
提出日時 2020-09-24 23:34:16
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 1,027 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 44,888 KB
最終ジャッジ日時 2024-05-05 02:28:07
合計ジャッジ時間 35,610 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 447 ms
44,632 KB
testcase_01 WA -
testcase_02 AC 452 ms
44,628 KB
testcase_03 AC 454 ms
44,632 KB
testcase_04 AC 450 ms
44,884 KB
testcase_05 AC 456 ms
44,628 KB
testcase_06 AC 449 ms
44,636 KB
testcase_07 AC 444 ms
44,368 KB
testcase_08 AC 443 ms
44,884 KB
testcase_09 WA -
testcase_10 AC 450 ms
44,632 KB
testcase_11 WA -
testcase_12 AC 456 ms
44,632 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 454 ms
44,628 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 442 ms
44,120 KB
testcase_21 AC 557 ms
44,500 KB
testcase_22 AC 689 ms
44,756 KB
testcase_23 AC 541 ms
44,244 KB
testcase_24 AC 865 ms
44,628 KB
testcase_25 AC 470 ms
44,508 KB
testcase_26 AC 457 ms
44,640 KB
testcase_27 AC 454 ms
44,624 KB
testcase_28 AC 462 ms
44,504 KB
testcase_29 AC 452 ms
44,248 KB
testcase_30 AC 535 ms
44,880 KB
testcase_31 AC 901 ms
44,624 KB
testcase_32 AC 866 ms
44,380 KB
testcase_33 AC 854 ms
44,368 KB
testcase_34 AC 813 ms
44,884 KB
testcase_35 AC 885 ms
44,368 KB
testcase_36 WA -
testcase_37 AC 460 ms
44,112 KB
testcase_38 AC 879 ms
44,248 KB
testcase_39 AC 563 ms
44,380 KB
testcase_40 AC 574 ms
44,628 KB
testcase_41 AC 566 ms
44,628 KB
testcase_42 AC 440 ms
44,240 KB
testcase_43 AC 444 ms
44,512 KB
testcase_44 WA -
testcase_45 WA -
testcase_46 AC 524 ms
44,376 KB
testcase_47 AC 532 ms
44,368 KB
testcase_48 AC 542 ms
44,760 KB
testcase_49 AC 555 ms
44,248 KB
testcase_50 AC 539 ms
44,496 KB
testcase_51 AC 534 ms
44,628 KB
testcase_52 AC 635 ms
44,252 KB
testcase_53 AC 629 ms
44,116 KB
testcase_54 AC 637 ms
44,116 KB
testcase_55 AC 584 ms
44,248 KB
testcase_56 AC 443 ms
44,628 KB
testcase_57 WA -
testcase_58 AC 446 ms
44,492 KB
testcase_59 AC 505 ms
44,372 KB
testcase_60 AC 452 ms
44,632 KB
testcase_61 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

"""数え上げ mod 10^9+7 をとる「嘘解法」。
経路数がちょうど 10^9+7 の倍数のときに答がずれる。
素数を乱択すれば通るので、落とさなくても良いと思う"""
import sys
import numpy as np

read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

MOD = 10**9 + 7

def mult(A, B):
    """行列積 mod MOD"""
    A1, A2 = np.divmod(A, 1 << 15)
    B1, B2 = np.divmod(B, 1 << 15)
    X = np.dot(A1, B1) % MOD
    Z = np.dot(A2, B2) % MOD
    Y = (np.dot(A1 + A2, B1 + B2) - X - Z) % MOD
    C = (X << 30) + (Y << 15) + Z
    return C % MOD

def mat_pow(A, n):
    if n == 0:
        return np.eye(len(A), dtype=np.int64)
    X = mat_pow(A, n // 2)
    X = mult(X, X)
    return mult(A, X) if n & 1 else X

N, M, T = map(int, readline().split())
A = np.zeros((N, N), np.int64)
m = map(int, read().split())
for frm, to in zip(m, m):
    A[to, frm] += 1

B = mat_pow(A, T)
ans = np.sum(B[:, 0] != 0)
if ans == 0:
    ans = -1
print(ans)
0