結果

問題 No.827 総神童数
ユーザー pekempeypekempey
提出日時 2019-05-03 21:37:02
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 198 ms / 2,000 ms
コード長 1,325 bytes
コンパイル時間 808 ms
コンパイル使用メモリ 74,652 KB
実行使用メモリ 25,276 KB
最終ジャッジ日時 2024-12-31 17:34:25
合計ジャッジ時間 5,613 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
10,552 KB
testcase_01 AC 8 ms
10,684 KB
testcase_02 AC 6 ms
10,556 KB
testcase_03 AC 7 ms
10,552 KB
testcase_04 AC 6 ms
10,556 KB
testcase_05 AC 6 ms
10,556 KB
testcase_06 AC 7 ms
10,560 KB
testcase_07 AC 6 ms
10,560 KB
testcase_08 AC 7 ms
10,556 KB
testcase_09 AC 187 ms
25,276 KB
testcase_10 AC 63 ms
15,036 KB
testcase_11 AC 10 ms
10,680 KB
testcase_12 AC 31 ms
12,860 KB
testcase_13 AC 143 ms
22,716 KB
testcase_14 AC 11 ms
10,940 KB
testcase_15 AC 58 ms
15,292 KB
testcase_16 AC 138 ms
19,640 KB
testcase_17 AC 167 ms
21,820 KB
testcase_18 AC 75 ms
16,320 KB
testcase_19 AC 198 ms
16,700 KB
testcase_20 AC 135 ms
15,036 KB
testcase_21 AC 91 ms
13,756 KB
testcase_22 AC 150 ms
15,420 KB
testcase_23 AC 9 ms
10,556 KB
testcase_24 AC 169 ms
15,928 KB
testcase_25 AC 118 ms
14,652 KB
testcase_26 AC 173 ms
16,056 KB
testcase_27 AC 107 ms
14,144 KB
testcase_28 AC 104 ms
14,144 KB
testcase_29 AC 82 ms
13,372 KB
testcase_30 AC 28 ms
11,448 KB
testcase_31 AC 63 ms
12,732 KB
testcase_32 AC 61 ms
12,860 KB
testcase_33 AC 189 ms
16,448 KB
testcase_34 AC 166 ms
15,932 KB
testcase_35 AC 62 ms
12,860 KB
testcase_36 AC 93 ms
13,756 KB
testcase_37 AC 116 ms
14,656 KB
testcase_38 AC 184 ms
16,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <vector>
#include <string>
#define REP(i, n) for (int i = 0; i < (n); i++)

using namespace std;

const int MOD = 1e9 + 7;

struct mint {
    int n;
    mint(int n_ = 0) : n(n_) {}
};

mint operator+(mint a, mint b) { a.n += b.n; if (a.n >= MOD) a.n -= MOD; return a; }
mint operator-(mint a, mint b) { a.n -= b.n; if (a.n < 0) a.n += MOD; return a; }
mint operator*(mint a, mint b) { return (long long)a.n * b.n % MOD; }
mint &operator+=(mint &a, mint b) { return a = a + b; }
mint &operator-=(mint &a, mint b) { return a = a - b; }
mint &operator*=(mint &a, mint b) { return a = a * b; }

mint F[200001] = {1, 1};
mint R[200001] = {1, 1};
mint I[200001] = {0, 1};

mint C(int n, int r) {
  if (n < 0 || r < 0 || n < r) return 0;
  return F[n] * R[n - r] * R[r];
}

void init() {
  for (int i = 2; i <= 200000; i++) {
    I[i] = I[MOD % i] * (MOD - MOD / i);
    F[i] = F[i - 1] * i;
    R[i] = R[i - 1] * I[i];
  }
}

int N;
vector<int> G[200000];
mint ans;

void dfs(int u, int p, int d) {
  ans += F[N] * I[d + 1];
  for (int v : G[u]) if (v != p) {
    dfs(v, u, d + 1);
  }
}

int main() {
  init();
  cin >> N;
  REP(i, N-1) {
    int u, v;
    cin >> u >> v;
    u--; v--;
    G[u].push_back(v);
    G[v].push_back(u);
  }
  dfs(0, -1, 0);
  cout << ans.n << '\n';
}
0