結果

問題 No.329 全射
ユーザー ryofjtryofjt
提出日時 2016-09-16 06:45:43
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 26 ms / 2,000 ms
コード長 894 bytes
コンパイル時間 538 ms
コンパイル使用メモリ 40,188 KB
実行使用メモリ 7,100 KB
最終ジャッジ日時 2023-08-10 20:50:27
合計ジャッジ時間 2,997 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
6,968 KB
testcase_01 AC 6 ms
6,948 KB
testcase_02 AC 5 ms
6,888 KB
testcase_03 AC 5 ms
6,884 KB
testcase_04 AC 6 ms
6,884 KB
testcase_05 AC 6 ms
6,876 KB
testcase_06 AC 5 ms
6,884 KB
testcase_07 AC 6 ms
6,872 KB
testcase_08 AC 6 ms
6,952 KB
testcase_09 AC 6 ms
6,840 KB
testcase_10 AC 5 ms
6,928 KB
testcase_11 AC 6 ms
6,896 KB
testcase_12 AC 6 ms
6,932 KB
testcase_13 AC 24 ms
6,984 KB
testcase_14 AC 15 ms
7,068 KB
testcase_15 AC 15 ms
6,928 KB
testcase_16 AC 16 ms
7,020 KB
testcase_17 AC 19 ms
7,072 KB
testcase_18 AC 22 ms
7,016 KB
testcase_19 AC 26 ms
7,088 KB
testcase_20 AC 23 ms
7,092 KB
testcase_21 AC 19 ms
7,060 KB
testcase_22 AC 24 ms
7,100 KB
testcase_23 AC 9 ms
7,016 KB
testcase_24 AC 9 ms
6,952 KB
testcase_25 AC 12 ms
6,988 KB
testcase_26 AC 9 ms
7,036 KB
testcase_27 AC 6 ms
6,936 KB
testcase_28 AC 5 ms
6,936 KB
testcase_29 AC 6 ms
6,924 KB
testcase_30 AC 5 ms
6,904 KB
testcase_31 AC 5 ms
6,936 KB
testcase_32 AC 6 ms
6,848 KB
testcase_33 AC 14 ms
7,012 KB
testcase_34 AC 13 ms
7,000 KB
testcase_35 AC 16 ms
7,040 KB
testcase_36 AC 15 ms
7,076 KB
testcase_37 AC 12 ms
6,992 KB
testcase_38 AC 15 ms
7,028 KB
testcase_39 AC 14 ms
7,004 KB
testcase_40 AC 18 ms
7,076 KB
testcase_41 AC 13 ms
6,940 KB
testcase_42 AC 17 ms
7,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <algorithm>

#define rep(i, n) for(int i = 0; i < (n); ++i)

using namespace std;

typedef long long ll;

const int mod = 1e9 + 7;

int add(int a, int b){
	return (a + b) % mod;
}
int mul(int a, int b){
	return ll(a) * b % mod;
}

int n, m;
int w[200];
int p[200][200];
int s[1001][1001];

int main(){
	scanf("%d%d", &n, &m);
	rep(i, n){
		scanf("%d", &w[i]);
	}
	rep(i, m){
		int a, b;
		scanf("%d%d", &a, &b);
		--a;
		--b;
		p[a][b] = min(w[a], w[b]);
	}

	rep(i, n){
		p[i][i] = w[i];
	}
	rep(k, n){
		rep(i, n){
			rep(j, n){
				p[i][j] = max(p[i][j], min(p[i][k], p[k][j]));
			}
		}
	}

	s[0][0] = 1;
	for(int i = 1; i <= 1000; ++i){
		rep(j, i + 1){
			s[i][j] = mul(j, add(s[i - 1][j], s[i - 1][j - 1]));
		}
	}

	int ans = 0;
	rep(i, n){
		rep(j, n){
			if(p[i][j] >= w[j]){
				ans = add(s[w[i]][w[j]], ans);
			}
		}
	}
	printf("%d\n", ans);
	return 0;
}
0