結果

問題 No.827 総神童数
ユーザー kk
提出日時 2020-09-16 03:03:57
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 173 ms / 2,000 ms
コード長 1,170 bytes
コンパイル時間 3,231 ms
コンパイル使用メモリ 204,736 KB
実行使用メモリ 22,824 KB
最終ジャッジ日時 2024-06-22 02:57:57
合計ジャッジ時間 8,606 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
12,104 KB
testcase_01 AC 39 ms
12,076 KB
testcase_02 AC 39 ms
12,052 KB
testcase_03 AC 39 ms
11,952 KB
testcase_04 AC 40 ms
12,068 KB
testcase_05 AC 39 ms
11,984 KB
testcase_06 AC 39 ms
11,988 KB
testcase_07 AC 38 ms
12,000 KB
testcase_08 AC 38 ms
11,956 KB
testcase_09 AC 142 ms
22,824 KB
testcase_10 AC 71 ms
15,560 KB
testcase_11 AC 40 ms
12,100 KB
testcase_12 AC 51 ms
13,744 KB
testcase_13 AC 128 ms
21,064 KB
testcase_14 AC 43 ms
12,256 KB
testcase_15 AC 70 ms
15,588 KB
testcase_16 AC 128 ms
19,204 KB
testcase_17 AC 146 ms
20,996 KB
testcase_18 AC 79 ms
16,340 KB
testcase_19 AC 173 ms
18,136 KB
testcase_20 AC 132 ms
16,432 KB
testcase_21 AC 101 ms
15,340 KB
testcase_22 AC 145 ms
16,860 KB
testcase_23 AC 40 ms
12,168 KB
testcase_24 AC 166 ms
17,352 KB
testcase_25 AC 124 ms
16,092 KB
testcase_26 AC 158 ms
17,448 KB
testcase_27 AC 109 ms
15,708 KB
testcase_28 AC 105 ms
15,744 KB
testcase_29 AC 88 ms
14,844 KB
testcase_30 AC 50 ms
12,868 KB
testcase_31 AC 76 ms
14,356 KB
testcase_32 AC 72 ms
14,236 KB
testcase_33 AC 163 ms
17,948 KB
testcase_34 AC 141 ms
17,460 KB
testcase_35 AC 69 ms
14,352 KB
testcase_36 AC 86 ms
15,308 KB
testcase_37 AC 104 ms
16,124 KB
testcase_38 AC 168 ms
17,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

#define REP(i,n) for(int i=0; i<(int)(n); i++)

const long long MOD = 1e9 + 7;
int n;
vector<int> edges[200000];
int depth[200000+1];
long long f[200000+1];
long long g[200000+1];

long long modpow(long long x, long long p, long long mod) {
  long long ret = 1;
  while (p) {
    if (p & 1)
      ret = ret * x % mod;
    x = x * x % mod;
    p >>= 1;
  }
  return ret;
}

long long comb(int n, int k) {
  return f[n] * g[n-k] % MOD * g[k] % MOD;
}

void dfs(int v, int par = -1, int d = 1) {
  ++depth[d];
  for (int w: edges[v]) {
    if (w != par)
      dfs(w, v, d+1);
  }
}

int main() {
  ios_base::sync_with_stdio(0);
  cin.tie(0);

  f[0] = g[0] = 1;
  for (int i = 1; i <= 200000; i++) {
    f[i] = i * f[i-1] % MOD;
    g[i] = modpow(f[i], MOD-2, MOD);
  }
  
  cin >> n;
  REP (i, n-1) {
    int u, v;
    cin >> u >> v;
    --u, --v;
    edges[u].push_back(v);
    edges[v].push_back(u);
  }

  dfs(0);

  long long ret = 0;
  for (int d = 1; d <= n; d++) {
    long long tmp = depth[d] * comb(n, d) % MOD * f[d-1] % MOD * f[n-d] % MOD;
    ret = (ret + tmp) % MOD;
  }
  cout << ret << endl;
  
  return 0;
}
0