結果

問題 No.827 総神童数
ユーザー coco18000coco18000
提出日時 2019-05-04 16:43:49
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 246 ms / 2,000 ms
コード長 1,479 bytes
コンパイル時間 1,834 ms
コンパイル使用メモリ 174,164 KB
実行使用メモリ 17,536 KB
最終ジャッジ日時 2024-06-23 02:09:16
合計ジャッジ時間 8,752 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
11,264 KB
testcase_01 AC 7 ms
11,264 KB
testcase_02 AC 8 ms
11,264 KB
testcase_03 AC 8 ms
11,264 KB
testcase_04 AC 8 ms
11,264 KB
testcase_05 AC 8 ms
11,264 KB
testcase_06 AC 8 ms
11,264 KB
testcase_07 AC 8 ms
11,264 KB
testcase_08 AC 8 ms
11,264 KB
testcase_09 AC 237 ms
17,536 KB
testcase_10 AC 79 ms
13,440 KB
testcase_11 AC 11 ms
11,392 KB
testcase_12 AC 37 ms
12,288 KB
testcase_13 AC 181 ms
16,256 KB
testcase_14 AC 14 ms
11,648 KB
testcase_15 AC 72 ms
13,184 KB
testcase_16 AC 176 ms
16,256 KB
testcase_17 AC 210 ms
17,280 KB
testcase_18 AC 90 ms
13,952 KB
testcase_19 AC 245 ms
17,408 KB
testcase_20 AC 177 ms
15,872 KB
testcase_21 AC 128 ms
14,464 KB
testcase_22 AC 197 ms
16,256 KB
testcase_23 AC 9 ms
11,264 KB
testcase_24 AC 222 ms
16,768 KB
testcase_25 AC 165 ms
15,488 KB
testcase_26 AC 222 ms
16,896 KB
testcase_27 AC 143 ms
15,104 KB
testcase_28 AC 140 ms
14,848 KB
testcase_29 AC 111 ms
14,208 KB
testcase_30 AC 35 ms
12,160 KB
testcase_31 AC 86 ms
13,568 KB
testcase_32 AC 86 ms
13,440 KB
testcase_33 AC 246 ms
17,280 KB
testcase_34 AC 222 ms
16,768 KB
testcase_35 AC 87 ms
13,568 KB
testcase_36 AC 124 ms
14,592 KB
testcase_37 AC 165 ms
15,488 KB
testcase_38 AC 238 ms
17,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

typedef long long int ll;
typedef pair<ll, ll> pll;

#define FOR(i, n, m) for (ll(i) = (m); (i) < (n); ++(i))
#define REP(i, n) FOR(i, n, 0)
#define OF64 std::setprecision(10)

const ll MOD = 1000000007;
const ll INF = (ll)1e15;

struct Vertex
{
    vector<int> n;
    ll depth = INF;
};

Vertex V[200005];
ll F;
ll IF[200005];
ll N;

int main()
{
    cin >> N;
    REP(i, N - 1)
    {
        int a, b;
        cin >> a >> b;
        a--;
        b--;
        V[a].n.push_back(b);
        V[b].n.push_back(a);
    }

    queue<pll> q;
    q.push(pll(0, 0));
    while (!q.empty())
    {
        pll t = q.front();
        q.pop();
        V[t.first].depth = t.second;
        int nd = t.second + 1;
        REP(i, V[t.first].n.size())
        {
            int n = V[t.first].n[i];
            if (nd >= V[n].depth)
                continue;
            q.push(pll(n, nd));
        }
    }
    memset(IF, 0, sizeof(IF));
    FOR(i, N + 2, 1)
    {
        ll f = 1;
        ll t = i;
        for (int j = 0; j <= 30; ++j)
        {
            if ((((MOD - 2) >> j) & 1) == 1)
            {
                f *= t;
                f %= MOD;
            }
            t = (t * t) % MOD;
        }
        IF[i] = f;
    }
    F = 1;
    FOR(i, N + 1, 1)
    {
        F = F * i % MOD;
    }
    ll ans = 0;
    REP(i, N)
    {
        ans += F * IF[V[i].depth + 1];
        ans %= MOD;
    }
    cout << ans << endl;
    return 0;
}
0