結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 522 ms
51,692 KB
testcase_01 AC 530 ms
51,936 KB
testcase_02 AC 525 ms
51,692 KB
testcase_03 AC 523 ms
51,688 KB
testcase_04 AC 512 ms
51,752 KB
testcase_05 AC 522 ms
51,692 KB
testcase_06 AC 521 ms
51,944 KB
testcase_07 AC 521 ms
51,952 KB
testcase_08 AC 526 ms
51,692 KB
testcase_09 AC 541 ms
51,688 KB
testcase_10 AC 525 ms
51,948 KB
testcase_11 AC 535 ms
52,076 KB
testcase_12 AC 538 ms
51,564 KB
testcase_13 AC 872 ms
52,716 KB
testcase_14 WA -
testcase_15 AC 665 ms
51,700 KB
testcase_16 AC 663 ms
52,452 KB
testcase_17 AC 720 ms
51,692 KB
testcase_18 AC 735 ms
52,836 KB
testcase_19 AC 765 ms
52,836 KB
testcase_20 AC 729 ms
52,840 KB
testcase_21 AC 704 ms
52,328 KB
testcase_22 WA -
testcase_23 AC 576 ms
52,072 KB
testcase_24 AC 580 ms
51,560 KB
testcase_25 AC 657 ms
51,940 KB
testcase_26 AC 620 ms
51,956 KB
testcase_27 WA -
testcase_28 AC 510 ms
51,596 KB
testcase_29 AC 533 ms
52,068 KB
testcase_30 AC 589 ms
52,212 KB
testcase_31 AC 543 ms
52,200 KB
testcase_32 AC 541 ms
52,072 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.int64) - 1
I = IJ[::2]
J = IJ[1::2]

A = np.zeros((N, N), np.int64)
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