結果
問題 | No.329 全射 |
ユーザー | koyumeishi |
提出日時 | 2015-12-22 12:46:14 |
言語 | C++11 (gcc 11.4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 3,137 bytes |
コンパイル時間 | 944 ms |
コンパイル使用メモリ | 106,320 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-18 18:35:12 |
合計ジャッジ時間 | 5,699 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 1 ms
6,940 KB |
testcase_05 | AC | 1 ms
6,944 KB |
testcase_06 | AC | 1 ms
6,940 KB |
testcase_07 | AC | 1 ms
6,940 KB |
testcase_08 | AC | 1 ms
6,944 KB |
testcase_09 | AC | 1 ms
6,944 KB |
testcase_10 | AC | 1 ms
6,944 KB |
testcase_11 | AC | 1 ms
6,940 KB |
testcase_12 | AC | 1 ms
6,944 KB |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
testcase_37 | RE | - |
testcase_38 | RE | - |
testcase_39 | RE | - |
testcase_40 | RE | - |
testcase_41 | RE | - |
testcase_42 | RE | - |
ソースコード
#include <iostream> #include <vector> #include <cstdio> #include <sstream> #include <map> #include <string> #include <algorithm> #include <queue> #include <cmath> #include <functional> #include <set> #include <ctime> #include <random> using namespace std; template<class T> istream& operator >> (istream& is, vector<T>& vec){for(T& val: vec) is >> val; return is;} template<class T> istream& operator , (istream& is, T& val){ return is >> val;} template<class T> ostream& operator << (ostream& os, vector<T>& vec){for(int i=0; i<vec.size(); i++) os << vec[i] << (i==vec.size()-1?"\n":" ");return os;} #define MOD 1000000007 class combination_mod{ const long long mod; const long long size; vector<long long> fact; //n! vector<long long> fact_inv; // (n!)^-1 void make_fact(){ fact[0] = 1; for(long long i=1; i<size; i++){ fact[i] = fact[i-1]*i % mod; } } void make_fact_inv(){ fact_inv[0] = fact_inv[1] = 1; for(long long i=2; i<size; i++){ fact_inv[i] = fact_inv[mod%i] * (mod - mod/i) % mod; // x ^ -1 } for(int i=2; i<size; i++){ fact_inv[i] = fact_inv[i-1] * fact_inv[i] % mod; // x! ^ -1 } } public: combination_mod(long long mod_, long long size_ = 2000000) : mod(mod_), size(size_+1){ fact.resize(size); fact_inv.resize(size); make_fact(); make_fact_inv(); } //nCk mod p O(1) long long comb(long long n, long long k){ if(k==0 || n==k) return 1; long long ret = fact[n] * fact_inv[k] % mod * fact_inv[n-k] % mod; return ret; } //n! mod p O(1) long long factorial(long long n){ return fact[n]; } }; long long mod_pow(long long x, long long y/*, long long MOD*/){ //x^y mod MOD long long ret=1LL; while(y>0LL){ if(y&1LL) ret = (ret * x) % MOD; x = (x*x) % MOD; y >>= 1LL; } return ret; } #include <cassert> int main(){ int n,m; cin >> n,m; vector<int> w(n); cin >> w; vector<vector<int>> G(n); for(int i=0; i<m; i++){ int x,y; cin >> x,y; x--; y--; //if(w[x] >= w[y]) { G[x].push_back(y); } } const int len = 20; combination_mod cmb(MOD, len); /* vector<vector<long long>> dp(len, vector<long long>(len, 0)); for(int i=1; i<len; i++){ for(int j=1; j<=i; j++){ long long tmp = 0; for(int k=1; k<j; k++){ tmp = tmp + dp[i][k] * cmb.comb(j,k); tmp %= MOD; } dp[i][j] = (mod_pow(j,i) - tmp + MOD)%MOD; } } */ vector<vector<long long>> Stirling2(len, vector<long long>(len, 0)); Stirling2[0][0] = 1; for(int i=1; i<len; i++){ for(int j=1; j<=i; j++){ Stirling2[i][j] = (Stirling2[i-1][j-1] + j*Stirling2[i-1][j]) % MOD; } } long long ans=0; for(int i=0; i<n; i++){ vector<int> sz(n, 0); sz[i] = w[i]; priority_queue<pair<int,int>, vector<pair<int,int>>, greater<pair<int,int>>> pq; pq.push({w[i], i}); while(pq.size()){ auto p = pq.top(); pq.pop(); for(int next : G[p.second] ){ int s = min(p.first, w[next]); if(sz[next] >= s) continue; sz[next] = s; pq.push({s,next}); } } for(int j=0; j<n; j++){ if(sz[j]!=w[j]) continue; ans = (ans + Stirling2[w[i]][sz[j]] * cmb.factorial(sz[j]))%MOD; } } cout << ans << endl; return 0; }