結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 518 ms
44,500 KB
testcase_01 WA -
testcase_02 AC 519 ms
44,500 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 525 ms
44,496 KB
testcase_07 WA -
testcase_08 RE -
testcase_09 AC 537 ms
44,116 KB
testcase_10 AC 535 ms
43,992 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 559 ms
44,496 KB
testcase_14 AC 574 ms
44,120 KB
testcase_15 AC 573 ms
44,632 KB
testcase_16 WA -
testcase_17 AC 553 ms
44,372 KB
testcase_18 WA -
testcase_19 AC 541 ms
44,504 KB
testcase_20 WA -
testcase_21 AC 901 ms
44,496 KB
testcase_22 AC 928 ms
44,248 KB
testcase_23 AC 920 ms
44,376 KB
testcase_24 AC 798 ms
44,364 KB
testcase_25 AC 692 ms
43,988 KB
testcase_26 AC 617 ms
44,244 KB
testcase_27 AC 587 ms
44,376 KB
testcase_28 AC 714 ms
44,368 KB
testcase_29 AC 565 ms
44,500 KB
testcase_30 AC 927 ms
44,624 KB
testcase_31 AC 1,281 ms
44,496 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 524 ms
44,496 KB
testcase_37 AC 538 ms
44,500 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 AC 554 ms
44,500 KB
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 AC 521 ms
44,116 KB
testcase_57 AC 523 ms
44,108 KB
testcase_58 AC 526 ms
44,624 KB
testcase_59 WA -
testcase_60 RE -
testcase_61 WA -
権限があれば一括ダウンロードができます

ソースコード

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):
        idx = A[:, j // K] & (1 << j % K) > 0
        C[idx] |= B[j]
    return C


def mat_pow(A, n):
    N = len(A)
    if n == 1:
        return A
    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):
    for to in range(N):
        A[frm, to // K] |= 1 << to % K

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