結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 446 ms
44,136 KB
testcase_01 WA -
testcase_02 AC 444 ms
44,524 KB
testcase_03 AC 447 ms
44,648 KB
testcase_04 AC 437 ms
44,392 KB
testcase_05 AC 438 ms
44,400 KB
testcase_06 AC 451 ms
44,140 KB
testcase_07 AC 450 ms
44,272 KB
testcase_08 AC 446 ms
44,520 KB
testcase_09 WA -
testcase_10 AC 446 ms
44,140 KB
testcase_11 WA -
testcase_12 AC 445 ms
44,264 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 450 ms
44,136 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 443 ms
44,392 KB
testcase_21 AC 479 ms
44,136 KB
testcase_22 AC 495 ms
44,656 KB
testcase_23 AC 478 ms
44,516 KB
testcase_24 AC 503 ms
44,264 KB
testcase_25 AC 460 ms
44,648 KB
testcase_26 AC 471 ms
44,400 KB
testcase_27 AC 462 ms
44,272 KB
testcase_28 AC 467 ms
44,272 KB
testcase_29 AC 448 ms
44,640 KB
testcase_30 AC 478 ms
44,528 KB
testcase_31 AC 510 ms
44,276 KB
testcase_32 AC 509 ms
44,452 KB
testcase_33 AC 529 ms
44,520 KB
testcase_34 AC 510 ms
44,528 KB
testcase_35 AC 511 ms
44,140 KB
testcase_36 WA -
testcase_37 AC 469 ms
44,136 KB
testcase_38 AC 542 ms
44,268 KB
testcase_39 AC 497 ms
44,648 KB
testcase_40 AC 473 ms
44,516 KB
testcase_41 AC 464 ms
44,520 KB
testcase_42 AC 449 ms
44,136 KB
testcase_43 AC 445 ms
44,644 KB
testcase_44 WA -
testcase_45 WA -
testcase_46 AC 457 ms
44,524 KB
testcase_47 AC 452 ms
44,396 KB
testcase_48 AC 472 ms
44,524 KB
testcase_49 AC 467 ms
44,780 KB
testcase_50 AC 463 ms
44,136 KB
testcase_51 AC 453 ms
44,652 KB
testcase_52 AC 471 ms
44,648 KB
testcase_53 AC 469 ms
44,520 KB
testcase_54 AC 468 ms
44,524 KB
testcase_55 AC 461 ms
44,520 KB
testcase_56 AC 443 ms
44,528 KB
testcase_57 AC 447 ms
44,136 KB
testcase_58 AC 452 ms
44,656 KB
testcase_59 AC 459 ms
44,260 KB
testcase_60 AC 443 ms
44,264 KB
testcase_61 AC 453 ms
44,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""bit並列化"""
import sys
import numpy as np

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

K = 60


def mult(A, B):
    N = len(A)
    C = np.zeros_like(A)
    # A[i,j] == 1 のとき、 C[i,:] |= B[j,:] となるので
    for j in range(N):
        add_to = (A[:, j // K] & (1 << j % K)) > 0
        C |= add_to[:, None] * B[j]
    return C


def mat_pow(A, n):
    N = len(A)
    if n == 1:
        return A
    if n == 0:
        B = np.zeros_like(A)
        for i in range(N):
            B[i, i // K] = 1 << i % K
        return B
    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 // K + 1), np.int64)
m = map(int, read().split())
for frm, to in zip(m, m):
    A[frm, to // K] |= 1 << to % K

B = mat_pow(A, T)
ans = 0
for x in B[0]:
    ans += bin(x).count('1')
if not ans:
    ans = -1
print(ans)
0