結果

問題 No.329 全射
ユーザー TawaraTawara
提出日時 2015-12-26 04:50:45
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 241 ms / 2,000 ms
コード長 590 bytes
コンパイル時間 643 ms
コンパイル使用メモリ 76,812 KB
実行使用メモリ 87,336 KB
最終ジャッジ日時 2024-09-19 00:12:22
合計ジャッジ時間 8,256 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
75,564 KB
testcase_01 AC 74 ms
75,776 KB
testcase_02 AC 75 ms
75,776 KB
testcase_03 AC 75 ms
75,392 KB
testcase_04 AC 75 ms
75,548 KB
testcase_05 AC 75 ms
75,520 KB
testcase_06 AC 75 ms
75,508 KB
testcase_07 AC 76 ms
75,676 KB
testcase_08 AC 77 ms
75,520 KB
testcase_09 AC 79 ms
75,520 KB
testcase_10 AC 78 ms
75,664 KB
testcase_11 AC 77 ms
75,648 KB
testcase_12 AC 77 ms
75,520 KB
testcase_13 AC 222 ms
87,292 KB
testcase_14 AC 173 ms
87,336 KB
testcase_15 AC 176 ms
87,040 KB
testcase_16 AC 171 ms
87,168 KB
testcase_17 AC 220 ms
86,940 KB
testcase_18 AC 231 ms
87,040 KB
testcase_19 AC 241 ms
87,208 KB
testcase_20 AC 209 ms
87,192 KB
testcase_21 AC 189 ms
87,040 KB
testcase_22 AC 230 ms
87,176 KB
testcase_23 AC 134 ms
86,144 KB
testcase_24 AC 146 ms
86,208 KB
testcase_25 AC 169 ms
86,288 KB
testcase_26 AC 142 ms
86,528 KB
testcase_27 AC 126 ms
86,424 KB
testcase_28 AC 91 ms
80,000 KB
testcase_29 AC 115 ms
80,640 KB
testcase_30 AC 99 ms
80,304 KB
testcase_31 AC 82 ms
79,740 KB
testcase_32 AC 120 ms
81,664 KB
testcase_33 AC 133 ms
80,128 KB
testcase_34 AC 132 ms
80,128 KB
testcase_35 AC 149 ms
80,256 KB
testcase_36 AC 144 ms
80,300 KB
testcase_37 AC 128 ms
80,000 KB
testcase_38 AC 134 ms
80,256 KB
testcase_39 AC 135 ms
80,568 KB
testcase_40 AC 149 ms
80,128 KB
testcase_41 AC 132 ms
80,000 KB
testcase_42 AC 151 ms
80,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

I = lambda:map(int,raw_input().split()) 
p = 10**9+7
N,M = I();w = I();Mw = max(w)
E = [[0]*N for i in xrange(N)]
dp = [[0]*(Mw+1) for i in xrange(Mw+1)]
dp[0][0]=1
for i in xrange(Mw):
	for j in xrange(i+1):
		dp[i+1][j+1] = (j+1)*(dp[i][j+1]+dp[i][j]) % p
for i in xrange(N): E[i][i] = w[i]
for t in xrange(M): i,j = I();E[i-1][j-1] = w[i-1]
for k in xrange(N):
	for i in xrange(N):
		for j in xrange(N):
			t = E[k][j]
			if E[i][k] < t: t = E[i][k]
			if E[i][j] < t: E[i][j] = t
A = 0
for i in xrange(N):
	for j in xrange(N):
		if w[j] <= E[i][j]:
			A = (A+dp[w[i]][w[j]]) % p
print A
0