結果

問題 No.329 全射
ユーザー PulmnPulmn
提出日時 2018-07-17 16:43:56
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 63 ms / 2,000 ms
コード長 1,431 bytes
コンパイル時間 1,378 ms
コンパイル使用メモリ 173,176 KB
実行使用メモリ 11,340 KB
最終ジャッジ日時 2024-05-04 02:31:19
合計ジャッジ時間 3,690 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
10,680 KB
testcase_01 AC 4 ms
10,720 KB
testcase_02 AC 4 ms
11,036 KB
testcase_03 AC 4 ms
10,896 KB
testcase_04 AC 4 ms
10,968 KB
testcase_05 AC 4 ms
10,724 KB
testcase_06 AC 5 ms
10,896 KB
testcase_07 AC 3 ms
10,660 KB
testcase_08 AC 4 ms
10,856 KB
testcase_09 AC 4 ms
10,732 KB
testcase_10 AC 4 ms
10,624 KB
testcase_11 AC 4 ms
10,788 KB
testcase_12 AC 4 ms
10,608 KB
testcase_13 AC 59 ms
11,036 KB
testcase_14 AC 18 ms
11,164 KB
testcase_15 AC 35 ms
10,632 KB
testcase_16 AC 49 ms
11,092 KB
testcase_17 AC 43 ms
10,884 KB
testcase_18 AC 63 ms
11,020 KB
testcase_19 AC 61 ms
11,172 KB
testcase_20 AC 58 ms
10,856 KB
testcase_21 AC 46 ms
10,716 KB
testcase_22 AC 43 ms
11,328 KB
testcase_23 AC 17 ms
11,056 KB
testcase_24 AC 18 ms
10,880 KB
testcase_25 AC 29 ms
11,044 KB
testcase_26 AC 17 ms
10,904 KB
testcase_27 AC 6 ms
11,340 KB
testcase_28 AC 5 ms
10,720 KB
testcase_29 AC 6 ms
10,712 KB
testcase_30 AC 5 ms
11,020 KB
testcase_31 AC 4 ms
10,692 KB
testcase_32 AC 6 ms
10,924 KB
testcase_33 AC 6 ms
10,916 KB
testcase_34 AC 5 ms
10,652 KB
testcase_35 AC 5 ms
11,072 KB
testcase_36 AC 5 ms
10,920 KB
testcase_37 AC 5 ms
10,592 KB
testcase_38 AC 5 ms
10,596 KB
testcase_39 AC 5 ms
10,736 KB
testcase_40 AC 6 ms
10,852 KB
testcase_41 AC 6 ms
10,628 KB
testcase_42 AC 5 ms
10,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define syosu(x) fixed<<setprecision(x)
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef pair<int,int> P;
typedef pair<double,double> pdd;
typedef pair<ll,ll> pll;
typedef vector<int> vi;
typedef vector<vi> vvi;
typedef vector<double> vd;
typedef vector<vd> vvd;
typedef vector<ll> vl;
typedef vector<vl> vvl;
typedef vector<string> vs;
typedef vector<P> vp;
typedef vector<vp> vvp;
typedef vector<pll> vpll;
typedef pair<int,P> pip;
typedef vector<pip> vip;
const int inf=1<<30;
const ll INF=1ll<<60;
const double pi=acos(-1);
const double eps=1e-8;
const ull mod=1e9+7;
const int dx[4]={-1,0,1,0},dy[4]={0,-1,0,1};

const int M=1005;
ll n,m,dp[M][M];
vi a,b;
vip e;
vvi g;

void dfs(int v,int t){
	b[v]=t;
	for(auto u:g[v]) if(b[u]==inf) dfs(u,t);
}

int main(){
	cin>>n>>m;
	a=vi(n);
	e=vip(m);
	for(int i=0;i<n;i++) cin>>a[i];
	for(int i=0;i<m;i++){
		int u,v;
		cin>>u>>v;
		u--;v--;
		e[i]={a[v],{u,v}};
	}
	sort(e.rbegin(),e.rend());
	dp[1][1]++;
	for(int i=2;i<M;i++) for(int j=1;j<=i;j++) dp[i][j]=(dp[i-1][j]+(j?dp[i-1][j-1]:0))*j%mod;
	ll res=0;
	for(int i=0;i<n;i++){
		int A=a[i];
		b=vi(n,inf);
		b[i]=A;
		g=vvi(n);
		for(int j=0;j<m;j++){
			P p=e[j].second;
			int u=p.first,v=p.second;
			g[u].push_back(v);
			if(b[u]<inf&&b[v]==inf) dfs(v,min(A,a[v]));
		}
		for(int j=0;j<n;j++) if(a[j]<=b[j]&&b[j]<inf) (res+=dp[A][a[j]])%=mod;
	}
	cout<<res<<endl;
}
0