結果

問題 No.1227 I hate ThREE
ユーザー sahiyasahiya
提出日時 2020-12-17 18:53:48
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 194 ms / 2,000 ms
コード長 1,939 bytes
コンパイル時間 1,731 ms
コンパイル使用メモリ 117,644 KB
実行使用メモリ 50,500 KB
最終ジャッジ日時 2024-09-21 08:12:29
合計ジャッジ時間 6,033 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 15 ms
49,660 KB
testcase_04 AC 17 ms
50,272 KB
testcase_05 AC 20 ms
49,236 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 19 ms
20,468 KB
testcase_09 AC 15 ms
18,484 KB
testcase_10 AC 11 ms
15,700 KB
testcase_11 AC 113 ms
48,916 KB
testcase_12 AC 126 ms
50,472 KB
testcase_13 AC 5 ms
8,980 KB
testcase_14 AC 18 ms
17,736 KB
testcase_15 AC 27 ms
22,060 KB
testcase_16 AC 63 ms
33,128 KB
testcase_17 AC 36 ms
25,076 KB
testcase_18 AC 89 ms
38,100 KB
testcase_19 AC 68 ms
33,760 KB
testcase_20 AC 95 ms
39,976 KB
testcase_21 AC 3 ms
7,652 KB
testcase_22 AC 70 ms
34,264 KB
testcase_23 AC 189 ms
49,612 KB
testcase_24 AC 190 ms
50,412 KB
testcase_25 AC 194 ms
50,500 KB
testcase_26 AC 146 ms
48,912 KB
testcase_27 AC 160 ms
49,612 KB
testcase_28 AC 165 ms
50,220 KB
testcase_29 AC 163 ms
50,124 KB
testcase_30 AC 151 ms
49,080 KB
testcase_31 AC 152 ms
48,836 KB
testcase_32 AC 163 ms
50,088 KB
testcase_33 AC 150 ms
48,796 KB
testcase_34 AC 157 ms
49,600 KB
testcase_35 AC 148 ms
50,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")

#include <algorithm>
#include <bitset>
#include <climits>
#include <cmath>
#include <cstring>
#include <deque>
#include <forward_list>
#include <iomanip>
#include <iostream>
#include <list>
#include <map>
#include <queue>
#include <set>
#include <string>
#include <unordered_map>
#include <unordered_set>
#include <utility>
#include <vector>

using namespace std;
typedef long long ll;
typedef pair<int, int> P;
typedef bitset<16> BS;

const ll MOD = 1E+09 + 7;
const ll INF = 1E18;
const int MAX_N = 1000;

ll N, C;

ll dp[MAX_N + 1][6 * MAX_N];
vector<ll> G[MAX_N];

ll tree(ll i, ll par, ll j);
ll modPow(ll x, ll a);

int main()
{
    ios::sync_with_stdio(false);
    cin.tie(nullptr);

    cin >> N >> C;

    for (int i = 1; i <= N - 1; i++) {
        ll a, b;
        cin >> a >> b;
        G[a].push_back(b);
        G[b].push_back(a);
    }

    fill(dp[0], dp[N + 1], -1);
    ll ans = 0;
    for (int i = 1; i <= min(C, 6 * N - 5); i++) {
        ans += tree(1, 0, i);
        ans %= MOD;
    }
    ans += (modPow(2, N - 1) * max(0LL, C - 6 * N + 5)) % MOD;
    ans %= MOD;

    /*
    for (int i = 0; i < N; i++) {
        for (int j = 0; j < N; j++) {
            cout << "i = " << i << ", j = " << j << ", dp = " << dp[i][j] << "\n";
        }
    }
    */

    cout << ans << "\n";

    return 0;
}

ll tree(ll i, ll par, ll j)
{
    if (j < 1 || j > min(C, 6 * N - 5))
        return 0;
    if (dp[i][j] != -1)
        return dp[i][j];
    ll res = 1;
    for (auto c : G[i]) {
        if (c != par) {
            res *= (tree(c, i, j + 3) + tree(c, i, j - 3)) % MOD;
            res %= MOD;
        }
    }
    return dp[i][j] = res;
}

ll modPow(ll x, ll a)
{
    ll ans = 1;
    while (a > 0) {
        if (a & 1) {
            ans = (ans * x) % MOD;
        }
        x = (x * x) % MOD;
        a >>= 1;
    }
    return ans;
}
0