結果

問題 No.1227 I hate ThREE
ユーザー chielochielo
提出日時 2020-09-12 01:12:21
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 45 ms / 2,000 ms
コード長 1,337 bytes
コンパイル時間 1,927 ms
コンパイル使用メモリ 196,400 KB
実行使用メモリ 50,916 KB
最終ジャッジ日時 2025-01-02 05:59:37
合計ジャッジ時間 3,700 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,820 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 1 ms
6,820 KB
testcase_03 AC 13 ms
48,908 KB
testcase_04 AC 11 ms
49,176 KB
testcase_05 AC 12 ms
48,932 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 1 ms
6,816 KB
testcase_08 AC 8 ms
18,896 KB
testcase_09 AC 7 ms
18,320 KB
testcase_10 AC 5 ms
14,288 KB
testcase_11 AC 38 ms
48,908 KB
testcase_12 AC 43 ms
50,840 KB
testcase_13 AC 2 ms
8,056 KB
testcase_14 AC 7 ms
18,180 KB
testcase_15 AC 10 ms
22,692 KB
testcase_16 AC 19 ms
32,568 KB
testcase_17 AC 12 ms
24,716 KB
testcase_18 AC 25 ms
38,696 KB
testcase_19 AC 21 ms
34,824 KB
testcase_20 AC 28 ms
41,040 KB
testcase_21 AC 3 ms
7,792 KB
testcase_22 AC 21 ms
34,848 KB
testcase_23 AC 43 ms
50,016 KB
testcase_24 AC 44 ms
50,684 KB
testcase_25 AC 44 ms
50,916 KB
testcase_26 AC 40 ms
49,328 KB
testcase_27 AC 43 ms
50,128 KB
testcase_28 AC 45 ms
50,588 KB
testcase_29 AC 43 ms
50,592 KB
testcase_30 AC 42 ms
49,076 KB
testcase_31 AC 42 ms
50,044 KB
testcase_32 AC 45 ms
50,416 KB
testcase_33 AC 41 ms
50,784 KB
testcase_34 AC 41 ms
49,740 KB
testcase_35 AC 41 ms
49,684 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:29:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   29 |     scanf("%d%d", &n, &C);
      |     ~~~~~^~~~~~~~~~~~~~~~
main.cpp:32:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   32 |         scanf("%d%d", &u, &v);
      |         ~~~~~^~~~~~~~~~~~~~~~

ソースコード

diff #

#include <bits/stdc++.h>

const int maxn = 1e3 + 3;
using ll = long long;
const ll mo = 1e9 + 7;

int n, C, p[maxn];
std::vector<int> E[maxn];
ll dp[maxn][maxn * 3 * 2 + 3];

void dfs(int u) {
    for(int i = 1; i <= C && i <= n * 3 * 2 + 2; ++i) {
        dp[u][i] = 1;
    }
    for(auto &&v : E[u]) {
        if(v == p[u])
            continue;
        p[v] = u;
        dfs(v);
        for(int i = 1; i <= C && i <= n * 3 * 2 + 2; ++i) {
            ll wu = (i - 3 >= 1) ? dp[v][i - 3] : 0ll;
            ll wv = (i + 3 <= C && i + 3 <= n * 3 * 2 + 2) ? dp[v][i + 3] : 0ll;
            dp[u][i] = dp[u][i] * ((wu + wv) % mo) % mo;
        }
    }
}

int main() {
    scanf("%d%d", &n, &C);
    for(int i = 0; i < n - 1; ++i) {
        int u, v;
        scanf("%d%d", &u, &v);
        E[u].push_back(v);
        E[v].push_back(u);
    }
    dfs(1);
    ll ans = 0;
    if(C > n * 3 * 2 + 2) {
        for(int i = 1; i <= n * 3; ++i) {
            ans = (ans + dp[1][i]) % mo;
        }
        for(int i = 1; i <= n * 3; ++i) {
            ans = (ans + dp[1][n * 3 * 2 + 2 - i + 1]) % mo;
        }
        ans = (ans + dp[1][n * 3 + 1] * (C - n * 3 * 2) % mo) % mo;
    } else {
        for(int i = 1; i <= C; ++i) {
            ans = (ans + dp[1][i]) % mo;
        }
    }
    printf("%lld\n", (ans % mo + mo) % mo);
    return 0;
}
0