結果

問題 No.329 全射
ユーザー maspymaspy
提出日時 2020-04-03 02:11:06
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 856 bytes
コンパイル時間 90 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 52,328 KB
最終ジャッジ日時 2024-06-28 17:09:29
合計ジャッジ時間 30,672 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 579 ms
51,560 KB
testcase_01 AC 527 ms
51,684 KB
testcase_02 AC 512 ms
51,560 KB
testcase_03 AC 514 ms
52,200 KB
testcase_04 AC 504 ms
51,944 KB
testcase_05 AC 517 ms
51,944 KB
testcase_06 AC 512 ms
51,684 KB
testcase_07 AC 516 ms
51,688 KB
testcase_08 AC 506 ms
51,572 KB
testcase_09 AC 510 ms
51,688 KB
testcase_10 AC 523 ms
51,568 KB
testcase_11 AC 515 ms
51,816 KB
testcase_12 AC 524 ms
51,692 KB
testcase_13 AC 735 ms
51,816 KB
testcase_14 WA -
testcase_15 AC 660 ms
51,944 KB
testcase_16 AC 659 ms
51,984 KB
testcase_17 AC 702 ms
51,688 KB
testcase_18 AC 715 ms
52,200 KB
testcase_19 AC 755 ms
52,072 KB
testcase_20 AC 748 ms
52,196 KB
testcase_21 AC 699 ms
51,952 KB
testcase_22 WA -
testcase_23 AC 587 ms
51,692 KB
testcase_24 AC 571 ms
51,568 KB
testcase_25 AC 634 ms
51,940 KB
testcase_26 AC 604 ms
51,940 KB
testcase_27 WA -
testcase_28 AC 531 ms
51,940 KB
testcase_29 AC 528 ms
52,072 KB
testcase_30 AC 532 ms
51,744 KB
testcase_31 AC 520 ms
51,824 KB
testcase_32 AC 539 ms
51,700 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/ python3.8
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines
import numpy as np
MOD = 10 ** 9 + 7

N, M = map(int, readline().split())
W = np.array(readline().split(), np.int64)
IJ = np.array(read().split(), np.int32) - 1
I = IJ[::2]
J = IJ[1::2]

A = np.zeros((N, N), np.int32)
np.fill_diagonal(A, W)
A[I, J] = np.minimum(W[I], W[J])

for i in range(N):
    for j in range(N):
        A[i, j] = np.max(np.minimum(A[i, :], A[:, j]))


# 全射の数え上げ
U = 1000
dp = np.zeros((U + 1, U + 1), np.int64)
dp[0, 0] = 1
for n in range(U):
    dp[n + 1] += np.arange(U + 1, dtype=np.int64) * dp[n]
    dp[n + 1, 1:] += np.arange(1, U + 1, dtype=np.int64) * dp[n, :-1]
    dp[n + 1] %= MOD

reachable = A == W[None, :]
answer = (dp[W][:, W] * reachable).sum() % MOD
print(answer)
0