結果

問題 No.1340 おーじ君をさがせ
ユーザー maspymaspy
提出日時 2020-09-26 16:52:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 715 bytes
コンパイル時間 91 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,604 KB
最終ジャッジ日時 2024-05-05 02:32:01
合計ジャッジ時間 36,680 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 521 ms
43,956 KB
testcase_01 WA -
testcase_02 AC 521 ms
44,468 KB
testcase_03 AC 525 ms
44,088 KB
testcase_04 AC 520 ms
44,464 KB
testcase_05 AC 523 ms
44,340 KB
testcase_06 AC 523 ms
44,080 KB
testcase_07 AC 524 ms
44,084 KB
testcase_08 AC 525 ms
44,468 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 534 ms
44,600 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 530 ms
44,468 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 526 ms
44,092 KB
testcase_21 AC 557 ms
44,216 KB
testcase_22 AC 609 ms
43,992 KB
testcase_23 AC 561 ms
44,080 KB
testcase_24 AC 666 ms
44,344 KB
testcase_25 AC 540 ms
44,220 KB
testcase_26 AC 534 ms
44,340 KB
testcase_27 AC 529 ms
44,472 KB
testcase_28 AC 544 ms
44,096 KB
testcase_29 AC 540 ms
44,376 KB
testcase_30 AC 561 ms
44,472 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 682 ms
44,332 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 575 ms
44,476 KB
testcase_40 AC 569 ms
44,340 KB
testcase_41 AC 575 ms
44,128 KB
testcase_42 AC 528 ms
44,340 KB
testcase_43 AC 525 ms
44,344 KB
testcase_44 WA -
testcase_45 WA -
testcase_46 AC 559 ms
44,468 KB
testcase_47 AC 556 ms
44,340 KB
testcase_48 AC 559 ms
44,476 KB
testcase_49 AC 556 ms
44,216 KB
testcase_50 AC 556 ms
44,600 KB
testcase_51 AC 555 ms
44,344 KB
testcase_52 AC 585 ms
44,216 KB
testcase_53 AC 597 ms
44,256 KB
testcase_54 AC 580 ms
44,344 KB
testcase_55 AC 573 ms
44,440 KB
testcase_56 AC 523 ms
44,344 KB
testcase_57 AC 523 ms
44,212 KB
testcase_58 AC 527 ms
44,464 KB
testcase_59 AC 540 ms
44,468 KB
testcase_60 AC 525 ms
44,336 KB
testcase_61 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

"""数え上げ mod 2^{64} をとる「嘘解法」。
これはたぶん落ちると思う。"""

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 2^64"""
    return np.dot(A, B)

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