結果

問題 No.329 全射
ユーザー kmjpkmjp
提出日時 2015-12-22 00:50:27
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 800 ms / 2,000 ms
コード長 1,573 bytes
コンパイル時間 1,101 ms
コンパイル使用メモリ 162,076 KB
実行使用メモリ 20,096 KB
最終ジャッジ日時 2024-09-18 18:18:39
合計ジャッジ時間 12,145 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
18,304 KB
testcase_01 AC 24 ms
18,304 KB
testcase_02 AC 23 ms
18,304 KB
testcase_03 AC 25 ms
18,432 KB
testcase_04 AC 24 ms
18,432 KB
testcase_05 AC 24 ms
18,432 KB
testcase_06 AC 23 ms
18,432 KB
testcase_07 AC 25 ms
18,304 KB
testcase_08 AC 25 ms
18,432 KB
testcase_09 AC 23 ms
18,560 KB
testcase_10 AC 24 ms
18,432 KB
testcase_11 AC 24 ms
18,432 KB
testcase_12 AC 24 ms
18,432 KB
testcase_13 AC 742 ms
20,096 KB
testcase_14 AC 629 ms
19,840 KB
testcase_15 AC 599 ms
19,584 KB
testcase_16 AC 620 ms
19,840 KB
testcase_17 AC 672 ms
19,840 KB
testcase_18 AC 733 ms
19,840 KB
testcase_19 AC 790 ms
19,968 KB
testcase_20 AC 762 ms
20,096 KB
testcase_21 AC 677 ms
19,840 KB
testcase_22 AC 800 ms
19,968 KB
testcase_23 AC 111 ms
18,816 KB
testcase_24 AC 115 ms
18,944 KB
testcase_25 AC 172 ms
18,816 KB
testcase_26 AC 147 ms
18,816 KB
testcase_27 AC 66 ms
18,688 KB
testcase_28 AC 37 ms
18,560 KB
testcase_29 AC 58 ms
18,688 KB
testcase_30 AC 55 ms
18,816 KB
testcase_31 AC 26 ms
18,560 KB
testcase_32 AC 55 ms
18,688 KB
testcase_33 AC 186 ms
18,944 KB
testcase_34 AC 149 ms
18,816 KB
testcase_35 AC 201 ms
18,816 KB
testcase_36 AC 197 ms
18,688 KB
testcase_37 AC 175 ms
18,688 KB
testcase_38 AC 176 ms
18,944 KB
testcase_39 AC 179 ms
18,944 KB
testcase_40 AC 197 ms
19,072 KB
testcase_41 AC 163 ms
18,816 KB
testcase_42 AC 230 ms
18,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef signed long long ll;

#undef _P
#define _P(...) (void)printf(__VA_ARGS__)
#define FOR(x,to) for(x=0;x<(to);x++)
#define FORR(x,arr) for(auto& x:arr)
#define ITR(x,c) for(__typeof(c.begin()) x=c.begin();x!=c.end();x++)
#define ALL(a) (a.begin()),(a.end())
#define ZERO(a) memset(a,0,sizeof(a))
#define MINUS(a) memset(a,0xff,sizeof(a))
//-------------------------------------------------------

int N,M;
int W[300];
int I[40404],J[40404];
ll mo=1000000007;
int mat[300][300];

static const int N_=1020;
static ll C_[N_][N_];

ll fact[1010][1010];
ll dp[1010][1010];


void solve() {
	int i,j,k,l,r,x,y,z; string s;
	
	
	FOR(i,N_) C_[i][0]=C_[i][i]=1;
	for(i=1;i<N_;i++) for(j=1;j<i;j++) C_[i][j]=(C_[i-1][j-1]+C_[i-1][j])%mo;
	
	FOR(i,1010) {
		fact[i][0]=1;
		FOR(j,1001) fact[i][j+1]=fact[i][j]*i%mo;
	}
	
	cin>>N>>M;
	FOR(i,N) {
		cin>>W[i], mat[i][i]=W[i];
		z=W[i];
		
		for(x=1;x<=z;x++) {
			dp[z][x]=fact[x][z];
			for(y=1;y<x;y++) {
				dp[z][x] -= C_[x][y] * dp[z][y] % mo;
				if(dp[z][x]<0) dp[z][x] += mo;
			}
		}
	}
	FOR(i,M) {
		cin>>I[i]>>J[i], I[i]--, J[i]--;
		mat[I[i]][J[i]]=min(W[I[i]],W[J[i]]);
	}
	
	FOR(z,N) FOR(x,N) FOR(y,N) mat[x][y] = max(mat[x][y], min(mat[x][z],mat[z][y]));
	
	ll ret=0;
	FOR(x,N) FOR(y,N) if(mat[x][y]>=W[y] && W[x]>=W[y]) ret +=dp[W[x]][W[y]];
	
	cout<<ret%mo<<endl;
	
}


int main(int argc,char** argv){
	string s;int i;
	if(argc==1) ios::sync_with_stdio(false);
	FOR(i,argc-1) s+=argv[i+1],s+='\n';
	FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin);
	solve(); return 0;
}
0