結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 442 ms
44,480 KB
testcase_01 WA -
testcase_02 AC 452 ms
44,740 KB
testcase_03 AC 448 ms
44,360 KB
testcase_04 AC 455 ms
44,348 KB
testcase_05 AC 449 ms
44,608 KB
testcase_06 AC 451 ms
44,356 KB
testcase_07 AC 455 ms
44,604 KB
testcase_08 AC 444 ms
44,228 KB
testcase_09 WA -
testcase_10 AC 446 ms
44,872 KB
testcase_11 WA -
testcase_12 AC 444 ms
44,480 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 442 ms
44,484 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 448 ms
44,268 KB
testcase_21 AC 467 ms
44,096 KB
testcase_22 AC 502 ms
44,612 KB
testcase_23 AC 474 ms
44,224 KB
testcase_24 AC 562 ms
44,612 KB
testcase_25 AC 455 ms
44,480 KB
testcase_26 AC 448 ms
44,496 KB
testcase_27 AC 451 ms
44,604 KB
testcase_28 AC 464 ms
44,220 KB
testcase_29 AC 449 ms
44,620 KB
testcase_30 AC 477 ms
44,476 KB
testcase_31 AC 573 ms
44,860 KB
testcase_32 AC 566 ms
44,228 KB
testcase_33 AC 565 ms
44,612 KB
testcase_34 AC 556 ms
44,352 KB
testcase_35 AC 573 ms
44,228 KB
testcase_36 WA -
testcase_37 AC 450 ms
44,352 KB
testcase_38 AC 589 ms
44,604 KB
testcase_39 AC 481 ms
44,864 KB
testcase_40 AC 486 ms
44,604 KB
testcase_41 AC 477 ms
44,484 KB
testcase_42 AC 448 ms
44,612 KB
testcase_43 AC 442 ms
44,740 KB
testcase_44 WA -
testcase_45 WA -
testcase_46 AC 466 ms
44,232 KB
testcase_47 AC 468 ms
44,608 KB
testcase_48 AC 476 ms
44,608 KB
testcase_49 AC 481 ms
44,488 KB
testcase_50 AC 479 ms
44,612 KB
testcase_51 AC 481 ms
44,480 KB
testcase_52 AC 501 ms
44,332 KB
testcase_53 AC 500 ms
44,352 KB
testcase_54 AC 493 ms
44,484 KB
testcase_55 AC 489 ms
44,220 KB
testcase_56 AC 459 ms
44,608 KB
testcase_57 AC 445 ms
44,096 KB
testcase_58 AC 444 ms
44,356 KB
testcase_59 AC 466 ms
44,228 KB
testcase_60 AC 447 ms
44,480 KB
testcase_61 AC 469 ms
44,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import numpy as np

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

def mult(A, B):
    C = np.dot(A, B)
    C[C >= 1] = 1
    return C

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 = B[:, 0].sum()
if ans == 0:
    ans = -1
print(ans)
0