結果

問題 No.196 典型DP (1)
ユーザー rantdrantd
提出日時 2015-04-30 16:10:21
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 35 ms / 2,000 ms
コード長 2,806 bytes
コンパイル時間 3,552 ms
コンパイル使用メモリ 155,412 KB
実行使用メモリ 66,776 KB
最終ジャッジ日時 2023-09-19 04:39:01
合計ジャッジ時間 5,140 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
66,356 KB
testcase_01 AC 32 ms
66,372 KB
testcase_02 AC 33 ms
66,628 KB
testcase_03 AC 33 ms
66,364 KB
testcase_04 AC 29 ms
66,376 KB
testcase_05 AC 29 ms
66,356 KB
testcase_06 AC 28 ms
66,364 KB
testcase_07 AC 27 ms
66,348 KB
testcase_08 AC 26 ms
66,500 KB
testcase_09 AC 26 ms
66,372 KB
testcase_10 AC 26 ms
66,572 KB
testcase_11 AC 26 ms
66,352 KB
testcase_12 AC 26 ms
66,500 KB
testcase_13 AC 19 ms
66,472 KB
testcase_14 AC 20 ms
66,480 KB
testcase_15 AC 20 ms
66,372 KB
testcase_16 AC 21 ms
66,404 KB
testcase_17 AC 24 ms
66,520 KB
testcase_18 AC 27 ms
66,436 KB
testcase_19 AC 29 ms
66,436 KB
testcase_20 AC 35 ms
66,448 KB
testcase_21 AC 35 ms
66,464 KB
testcase_22 AC 35 ms
66,428 KB
testcase_23 AC 34 ms
66,748 KB
testcase_24 AC 34 ms
66,456 KB
testcase_25 AC 33 ms
66,468 KB
testcase_26 AC 31 ms
66,600 KB
testcase_27 AC 32 ms
66,776 KB
testcase_28 AC 32 ms
66,640 KB
testcase_29 AC 31 ms
66,700 KB
testcase_30 AC 31 ms
66,560 KB
testcase_31 AC 33 ms
66,500 KB
testcase_32 AC 34 ms
66,688 KB
testcase_33 AC 34 ms
66,456 KB
testcase_34 AC 34 ms
66,456 KB
testcase_35 AC 33 ms
66,636 KB
testcase_36 AC 33 ms
66,508 KB
testcase_37 AC 34 ms
66,432 KB
testcase_38 AC 34 ms
66,456 KB
testcase_39 AC 35 ms
66,452 KB
testcase_40 AC 34 ms
66,460 KB
testcase_41 AC 19 ms
66,392 KB
testcase_42 AC 19 ms
66,380 KB
testcase_43 AC 19 ms
66,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#define repu(i, begin, end) for (__typeof(begin) i = (begin) - ((begin) > (end)); i != (end) - ((begin) > (end)); i += 1 - 2 * ((begin) > (end)))
#define repe(i, begin, end) for (__typeof(begin) i = (begin); i != (end) + 1 - 2 * ((begin) > (end)); i += 1 - 2 * ((begin) > (end)))
#define mem(a, x) memset(a, x, sizeof(a))
#define all(a) a.begin(), a.end()
#define count_bits(x) __builtin_popcount(x)
#define count_bitsll(x) __builtin_popcountll(x)
#define least_bits(x) __builtin_ffs(x)
#define least_bitsll(x) __builtin_ffsll(x)
#define most_bits(x) 32 - __builtin_clz(x)
#define most_bitsll(x) 64 - __builtin_clz(x)

vector<string> split(const string &s, char c) {
	vector<string> v;
	stringstream ss(s);
	string x;
	while (getline(ss, x, c)) v.push_back(x);
	return v;
}

#define error(args...) { vector<string> _v = split(#args, ','); err(_v.begin(), args); }

void err(vector<string>::iterator it) {}

template<typename T, typename... Args>
void err(vector<string>::iterator it, T a, Args... args) {
	cerr << it -> substr((*it)[0] == ' ', it -> length()) << " = " << a << '\n';
	err(++it, args...);
}

typedef long long ll;
const int MOD = 1000000007;

template<class T> inline T tmin(T a, T b) {return (a < b) ? a : b;}
template<class T> inline T tmax(T a, T b) {return (a > b) ? a : b;}
template<class T> inline void amax(T &a, T b) {if (b > a) a = b;}
template<class T> inline void amin(T &a, T b) {if (b < a) a = b;}
template<class T> inline T tabs(T a) {return (a > 0) ? a : -a;}
template<class T> T gcd(T a, T b) {while (b != 0) {T c = a; a = b; b = c % b;} return a;}

const int N = 2005;
int n, k, t;
int in[N], out[N], sub[N];
ll dp[N + N][N];
vector<int> G[N];

void dfs(int v, int p) {
    in[v] = ++t;
    sub[v] = 1;
    repu(i, 0, G[v].size()) {
        int u = G[v][i];
        if (u != p) {
            dfs(u, v);
            sub[v] += sub[u];
        }
    }
    out[v] = ++t;
}

bool comp(int x, int y) {
    if (out[x] != out[y]) return out[x] < out[y];
    return in[x] > in[y];
}

int main(int argc, char *argv[]) {
    ios_base::sync_with_stdio(false);
    int a, b;

    cin >> n >> k;
    repu(i, 1, n) {
        cin >> a >> b;
        G[a].push_back(b);
        G[b].push_back(a);
    }
    t = 0;
    dfs(0, -1);
    vector<int> v(n);
    repu(i, 0, n) v[i] = i;
    sort(all(v), comp);

    mem(dp, 0);
    dp[0][0] = 1;
    for (int i = 0, j = 1; i < n && j <= n + n;) {
        repu(l, 0, n + 1) dp[j][l] = dp[j - 1][l];

        if (j == out[v[i]]) {
            repu(l, sub[v[i]], n + 1) {
                dp[j][l] += dp[in[v[i]] - 1][l - sub[v[i]]];
                if (dp[j][l] >= MOD) dp[j][l] -= MOD;
            }
            i++;
        }
        j++;
    }
    
    printf("%lld\n", dp[n + n][k]);

    return 0;
}
0