結果

問題 No.329 全射
ユーザー TawaraTawara
提出日時 2015-12-26 05:10:26
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 295 ms / 2,000 ms
コード長 449 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 76,800 KB
実行使用メモリ 87,296 KB
最終ジャッジ日時 2024-06-06 03:35:21
合計ジャッジ時間 8,683 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
75,776 KB
testcase_01 AC 81 ms
75,392 KB
testcase_02 AC 86 ms
75,136 KB
testcase_03 AC 82 ms
75,520 KB
testcase_04 AC 81 ms
75,776 KB
testcase_05 AC 82 ms
75,648 KB
testcase_06 AC 83 ms
75,264 KB
testcase_07 AC 82 ms
75,264 KB
testcase_08 AC 82 ms
75,136 KB
testcase_09 AC 81 ms
75,392 KB
testcase_10 AC 83 ms
75,520 KB
testcase_11 AC 82 ms
75,392 KB
testcase_12 AC 84 ms
75,392 KB
testcase_13 AC 295 ms
87,040 KB
testcase_14 AC 201 ms
87,040 KB
testcase_15 AC 210 ms
87,168 KB
testcase_16 AC 202 ms
86,656 KB
testcase_17 AC 240 ms
86,912 KB
testcase_18 AC 261 ms
86,912 KB
testcase_19 AC 292 ms
87,296 KB
testcase_20 AC 245 ms
87,168 KB
testcase_21 AC 219 ms
87,040 KB
testcase_22 AC 292 ms
87,296 KB
testcase_23 AC 156 ms
86,400 KB
testcase_24 AC 159 ms
86,400 KB
testcase_25 AC 192 ms
86,144 KB
testcase_26 AC 164 ms
86,400 KB
testcase_27 AC 139 ms
86,400 KB
testcase_28 AC 101 ms
79,872 KB
testcase_29 AC 122 ms
80,256 KB
testcase_30 AC 108 ms
80,640 KB
testcase_31 AC 95 ms
79,616 KB
testcase_32 AC 137 ms
85,376 KB
testcase_33 AC 160 ms
79,872 KB
testcase_34 AC 154 ms
80,384 KB
testcase_35 AC 176 ms
80,000 KB
testcase_36 AC 170 ms
79,744 KB
testcase_37 AC 152 ms
80,256 KB
testcase_38 AC 156 ms
80,256 KB
testcase_39 AC 159 ms
80,000 KB
testcase_40 AC 175 ms
79,744 KB
testcase_41 AC 154 ms
80,000 KB
testcase_42 AC 181 ms
79,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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