結果
問題 | No.196 典型DP (1) |
ユーザー | nola_suz |
提出日時 | 2015-04-27 13:27:15 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,827 bytes |
コンパイル時間 | 799 ms |
コンパイル使用メモリ | 91,760 KB |
実行使用メモリ | 16,640 KB |
最終ジャッジ日時 | 2024-07-05 04:51:54 |
合計ジャッジ時間 | 5,144 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 10 ms
5,376 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
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 | TLE | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
ソースコード
#include <cstdlib> #include <cmath> #include <climits> #include <cfloat> #include <map> #include <set> #include <iostream> #include <string> #include <vector> #include <algorithm> #include <sstream> #include <complex> #include <stack> #include <queue> #include <cstdio> #include <cstring> #include <iterator> #include <bitset> #include <unordered_set> #include <unordered_map> //#include <utility> //#include <memory> //#include <functional> //#include <deque> //#include <cctype> //#include <ctime> //#include <numeric> //#include <list> //#include <iomanip> //#if __cplusplus >= 201103L //#include <array> //#include <tuple> //#include <initializer_list> //#include <forward_list> // //#define cauto const auto& //#else //#endif using namespace std; typedef long long ll; typedef pair<int,int> pii; typedef pair<ll,ll> pll; typedef vector<int> vint; typedef vector<vector<int> > vvint; typedef vector<long long> vll, vLL; typedef vector<vector<long long> > vvll, vvLL; #define VV(T) vector<vector< T > > template <class T> void initvv(vector<vector<T> > &v, int a, int b, const T &t = T()){ v.assign(a, vector<T>(b, t)); } template <class F, class T> void convert(const F &f, T &t){ stringstream ss; ss << f; ss >> t; } #define reep(i,a,b) for(int i=(a);i<(b);++i) #define rep(i,n) reep((i),0,(n)) #define ALL(v) (v).begin(),(v).end() #define PB push_back #define F first #define S second #define mkp make_pair #define RALL(v) (v).rbegin(),(v).rend() // #define DEBUG #ifdef DEBUG #define dump(x) cout << #x << " = " << (x) << endl; #define debug(x) cout << #x << " = " << (x) << " (L" << __LINE__ << ")" << " " << __FILE__ << endl; #else #define dump(x) #define debug(x) #endif #define MOD 1000000007LL #define EPS 1e-8 static const int INF=1<<24; vvll vv; int n,m; ll dp[2010][2010]; int used[2010]; ll tmp[2010]; int sz[2010]; ll add(ll a,ll b){ a%=MOD; b%=MOD; a+=b; a%=MOD; return a; } void foo2(int a){ ll ret[2010]={}; rep(i,2010){ ret[i]=add(ret[i],dp[a][i]); ret[i]=add(ret[i],tmp[i]); } rep(i,2010){ rep(j,2010){ if(i+j>=2010) break; ret[i+j]=add(ret[i+j],tmp[i]*dp[a][j]); } } rep(i,2010){ tmp[i]=ret[i]; } return; } void foo(int a){ // cout<<a<<endl; int n=0; rep(i,vv[a].size()){ if(used[vv[a][i]]==0) foo(vv[a][i]); n+=sz[vv[a][i]]; } used[a]=1; // if(a==2) cout<<"aoao "<<a<<" "<<vv[a].size()<<endl; if(vv[a].size()==0){ dp[a][1]=1LL; sz[a]=1; // puts("end"); return; } // puts("aa"); // return; rep(i,2010){ tmp[i]=dp[vv[a][0]][i]; } reep(i,1,vv[a].size()){ foo2(vv[a][i]); } rep(i,2010){ dp[a][i]=tmp[i]; } dp[a][n+1]=1LL; sz[a]=n+1; return; } void mainmain(){ cin>>n>>m; vv=vvll(n); rep(i,n-1){ int a,b; cin>>a>>b; vv[a].PB(b); } foo(0); cout<<dp[0][m]<<endl; } signed main() { mainmain(); }