結果
問題 | No.196 典型DP (1) |
ユーザー | DAyamaCTF |
提出日時 | 2018-09-24 20:38:07 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 27 ms / 2,000 ms |
コード長 | 1,415 bytes |
コンパイル時間 | 1,749 ms |
コンパイル使用メモリ | 162,744 KB |
実行使用メモリ | 54,684 KB |
最終ジャッジ日時 | 2024-09-23 05:15:34 |
合計ジャッジ時間 | 3,706 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,944 KB |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | AC | 3 ms
6,944 KB |
testcase_13 | AC | 2 ms
6,940 KB |
testcase_14 | AC | 3 ms
7,756 KB |
testcase_15 | AC | 5 ms
18,144 KB |
testcase_16 | AC | 9 ms
30,436 KB |
testcase_17 | AC | 13 ms
44,928 KB |
testcase_18 | AC | 16 ms
48,272 KB |
testcase_19 | AC | 17 ms
49,296 KB |
testcase_20 | AC | 20 ms
52,376 KB |
testcase_21 | AC | 21 ms
52,256 KB |
testcase_22 | AC | 20 ms
52,128 KB |
testcase_23 | AC | 23 ms
54,684 KB |
testcase_24 | AC | 18 ms
15,616 KB |
testcase_25 | AC | 23 ms
15,232 KB |
testcase_26 | AC | 27 ms
27,648 KB |
testcase_27 | AC | 26 ms
27,648 KB |
testcase_28 | AC | 26 ms
27,776 KB |
testcase_29 | AC | 26 ms
27,648 KB |
testcase_30 | AC | 26 ms
27,520 KB |
testcase_31 | AC | 23 ms
11,904 KB |
testcase_32 | AC | 23 ms
11,776 KB |
testcase_33 | AC | 23 ms
11,776 KB |
testcase_34 | AC | 23 ms
11,776 KB |
testcase_35 | AC | 23 ms
11,776 KB |
testcase_36 | AC | 23 ms
11,776 KB |
testcase_37 | AC | 15 ms
11,776 KB |
testcase_38 | AC | 23 ms
11,776 KB |
testcase_39 | AC | 21 ms
11,776 KB |
testcase_40 | AC | 23 ms
11,776 KB |
testcase_41 | AC | 2 ms
5,376 KB |
testcase_42 | AC | 2 ms
5,376 KB |
testcase_43 | AC | 2 ms
5,376 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:60:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 60 | scanf("%lld%lld",&N,&K); | ~~~~~^~~~~~~~~~~~~~~~~~ main.cpp:63:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 63 | scanf("%d%d",&a,&b); | ~~~~~^~~~~~~~~~~~~~
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; typedef unsigned long long ull; typedef pair<ll, ll> P; #define fi first #define se second #define repl(i,a,b) for(ll i=(ll)(a);i<(ll)(b);i++) #define rep(i,n) repl(i,0,n) #define all(x) (x).begin(),(x).end() #define dbg(x) cout<<#x"="<<x<<endl #define mmax(x,y) (x>y?x:y) #define mmin(x,y) (x<y?x:y) #define maxch(x,y) x=mmax(x,y) #define minch(x,y) x=mmin(x,y) #define uni(x) x.erase(unique(all(x)),x.end()) #define exist(x,y) (find(all(x),y)!=x.end()) #define bcnt __builtin_popcountll #define INF 1e16 #define mod 1000000007 ll N,K; ll cnt[5001]; ll dp[5001][5001]; ll dp2[2][5001]; vector<int> g[5001]; void dfs(int v,int pre){ cnt[v]=1; for(int nv : g[v]){ if(nv==pre)continue; dfs(nv,v); cnt[v]+=cnt[nv]; } int crt=0,nxt=1; rep(j,cnt[v]+1)dp2[crt][j]=0; dp2[crt][0]=1; for(int nv : g[v]){ if(nv==pre)continue; rep(j,cnt[v]+1)dp2[nxt][j]=0; rep(j,cnt[v]+1){ if(dp2[crt][j]==0)break; rep(k,cnt[nv]+1){ if(j+k<cnt[v])(dp2[nxt][j+k]+=dp2[crt][j]*dp[nv][k]%mod)%=mod; else break; } } swap(crt,nxt); } rep(j,cnt[v]){ dp[v][j]=dp2[crt][j]; } dp[v][cnt[v]]=1; } int main(){ scanf("%lld%lld",&N,&K); rep(i,N-1){ int a,b; scanf("%d%d",&a,&b); g[a].push_back(b); g[b].push_back(a); } dfs(0,-1); cout<<dp[0][K]<<endl; return 0; }