結果
問題 | No.1075 木の上の山 |
ユーザー | kotatsugame |
提出日時 | 2020-06-05 22:56:25 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 48 ms / 2,000 ms |
コード長 | 1,261 bytes |
コンパイル時間 | 668 ms |
コンパイル使用メモリ | 76,408 KB |
実行使用メモリ | 42,880 KB |
最終ジャッジ日時 | 2024-05-09 22:42:40 |
合計ジャッジ時間 | 2,102 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 3 ms
5,376 KB |
testcase_08 | AC | 3 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 3 ms
5,376 KB |
testcase_11 | AC | 3 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 3 ms
5,376 KB |
testcase_14 | AC | 3 ms
5,376 KB |
testcase_15 | AC | 4 ms
5,376 KB |
testcase_16 | AC | 3 ms
5,376 KB |
testcase_17 | AC | 45 ms
42,880 KB |
testcase_18 | AC | 34 ms
26,880 KB |
testcase_19 | AC | 43 ms
36,820 KB |
testcase_20 | AC | 34 ms
26,880 KB |
testcase_21 | AC | 31 ms
13,628 KB |
testcase_22 | AC | 29 ms
13,664 KB |
testcase_23 | AC | 28 ms
14,404 KB |
testcase_24 | AC | 32 ms
14,060 KB |
testcase_25 | AC | 29 ms
13,340 KB |
testcase_26 | AC | 48 ms
27,008 KB |
testcase_27 | AC | 33 ms
19,760 KB |
testcase_28 | AC | 38 ms
23,856 KB |
testcase_29 | AC | 33 ms
22,328 KB |
testcase_30 | AC | 35 ms
27,008 KB |
testcase_31 | AC | 38 ms
29,588 KB |
コンパイルメッセージ
main.cpp:70:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 70 | main() | ^~~~
ソースコード
#include<iostream> #include<vector> using namespace std; const long mod=1e9+7; int N,K; vector<int>G[1010]; long dp[1010][1010]; void dfs1(int u,int p) { for(int i=0;i<K;i++)dp[u][i]=1; for(int v:G[u])if(v!=p) { dfs1(v,u); int t=0; for(int i=0;i<K;i++) { t+=dp[v][i]; if(t>=mod)t-=mod; (dp[u][i]*=t)%=mod; } } } long ans; void dfs2(int u,int p) { vector<int>cs; for(int v:G[u])if(v!=p)cs.push_back(v); vector<vector<long> >L(cs.size()+1,vector<long>(K,1)); vector<vector<long> >R(cs.size()+1,vector<long>(K,1)); long t=p==-1; for(int i=0;i<K;i++) { (ans+=dp[u][i]*t)%=mod; if(p!=-1) { t+=dp[p][i]; if(t>=mod)t-=mod; } L[0][i]=t; } for(int i=0;i<cs.size();i++) { long t=0; for(int j=0;j<K;j++) { t+=dp[cs[i]][j]; if(t>=mod)t-=mod; L[i+1][j]=L[i][j]*t%mod; } } for(int i=cs.size();i--;) { long t=0; for(int j=0;j<K;j++) { t+=dp[cs[i]][j]; if(t>=mod)t-=mod; R[i][j]=R[i+1][j]*t%mod; } } for(int i=0;i<cs.size();i++) { for(int j=0;j<K;j++) { dp[u][j]=L[i][j]*R[i+1][j]%mod; } dfs2(cs[i],u); } } main() { cin>>N>>K; for(int i=1;i<N;i++) { int a,b;cin>>a>>b; a--,b--; G[a].push_back(b); G[b].push_back(a); } dfs1(0,-1); dfs2(0,-1); cout<<ans<<endl; }