結果
問題 | No.329 全射 |
ユーザー | btk |
提出日時 | 2015-12-22 19:55:31 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,790 bytes |
コンパイル時間 | 1,484 ms |
コンパイル使用メモリ | 167,568 KB |
実行使用メモリ | 13,228 KB |
最終ジャッジ日時 | 2024-09-18 18:43:34 |
合計ジャッジ時間 | 4,287 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 6 ms
11,948 KB |
testcase_01 | AC | 5 ms
12,584 KB |
testcase_02 | AC | 5 ms
11,692 KB |
testcase_03 | AC | 5 ms
12,456 KB |
testcase_04 | AC | 5 ms
13,112 KB |
testcase_05 | AC | 5 ms
11,688 KB |
testcase_06 | AC | 4 ms
11,944 KB |
testcase_07 | AC | 5 ms
12,200 KB |
testcase_08 | AC | 5 ms
11,572 KB |
testcase_09 | AC | 5 ms
11,336 KB |
testcase_10 | AC | 5 ms
11,600 KB |
testcase_11 | AC | 6 ms
11,556 KB |
testcase_12 | AC | 5 ms
11,684 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | AC | 6 ms
11,560 KB |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long LL; LL c[1001][1001]; LL dp[200][1001]; int z[300]; int w[300]; int d[300][300]; const LL MOD=1e9+7; void init_comb(int n){ n++;for(int i=0;i<n;i++)c[i][0]=1; for(int i=1;i<n;i++)for(int j=1;j<=i;j++)c[i][j]=(c[i-1][j]+c[i-1][j-1])%MOD; return; } LL pow_mod(LL a,LL n){ LL res=1,b=1; while(n>=b){ if(n&b)res=(res*a)%MOD; a=(a*a)%MOD;b<<=1; }return res; } inline void calc(int id,int n){ dp[id][0]=0; for(int m=1;m<=n;m++){ LL tmp=pow_mod(m,n); for(int i=1;i<m;i++){ tmp-=dp[id][i]*c[m][i]%MOD; tmp+=(tmp<0)*MOD; } dp[id][m]=tmp; // printf("%d->%d=%lld\n",n,m,tmp); } } int main() { fill((int*)d,(int*)d+300*300,0); int N,M; cin>>N>>M; for(int i=0;i<N;i++){ cin>>w[i]; d[i][i]=w[i]; } for(int i=0;i<M;i++){ int from,to; cin>>from>>to; d[from-1][to-1]=min(w[from-1],w[to-1]); } int sz; map<int,int> _z; /*init*/ { init_comb(1000); for(int i=0;i<N;i++)_z[w[i]]=0; int sz=_z.size(); int x=0; for(auto& it : _z){ z[x]=it.first; it.second=x++; } for(int i=0;i<sz;i++)calc(i,z[i]); } for(int k = 0; k < N; k++) for(int i = 0; i < N; i++) for(int j = 0; j < N; j++) d[i][j]=max(d[i][j],min(d[i][k],d[k][j])); LL res=0; for(int i = 0; i < N; i++)for(int j = 0; j < N; j++){ // printf("(%d:%d)->(%d)=%d:",i,w[i],j,d[i][j]); if(d[i][j]==w[j]){ res+=dp[_z[w[i]]][d[i][j]]; // printf("%lld",dp[_z[w[i]]][d[i][j]]); } //cout<<endl; } cout<<res<<endl; return 0; }