結果

問題 No.827 総神童数
ユーザー pekempeypekempey
提出日時 2019-05-03 21:37:02
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 154 ms / 2,000 ms
コード長 1,325 bytes
コンパイル時間 674 ms
コンパイル使用メモリ 73,500 KB
実行使用メモリ 25,216 KB
最終ジャッジ日時 2024-06-10 06:28:47
合計ジャッジ時間 4,821 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
10,680 KB
testcase_01 AC 6 ms
10,428 KB
testcase_02 AC 6 ms
10,552 KB
testcase_03 AC 7 ms
10,496 KB
testcase_04 AC 6 ms
10,560 KB
testcase_05 AC 6 ms
10,556 KB
testcase_06 AC 6 ms
10,428 KB
testcase_07 AC 5 ms
10,428 KB
testcase_08 AC 5 ms
10,496 KB
testcase_09 AC 152 ms
25,216 KB
testcase_10 AC 52 ms
14,976 KB
testcase_11 AC 8 ms
10,556 KB
testcase_12 AC 25 ms
12,864 KB
testcase_13 AC 118 ms
22,716 KB
testcase_14 AC 9 ms
10,940 KB
testcase_15 AC 49 ms
15,292 KB
testcase_16 AC 121 ms
19,512 KB
testcase_17 AC 140 ms
21,824 KB
testcase_18 AC 61 ms
16,188 KB
testcase_19 AC 154 ms
16,640 KB
testcase_20 AC 110 ms
15,160 KB
testcase_21 AC 77 ms
13,756 KB
testcase_22 AC 120 ms
15,416 KB
testcase_23 AC 7 ms
10,496 KB
testcase_24 AC 137 ms
15,932 KB
testcase_25 AC 104 ms
14,656 KB
testcase_26 AC 136 ms
16,000 KB
testcase_27 AC 87 ms
14,136 KB
testcase_28 AC 95 ms
14,016 KB
testcase_29 AC 70 ms
13,440 KB
testcase_30 AC 24 ms
11,392 KB
testcase_31 AC 55 ms
12,728 KB
testcase_32 AC 52 ms
12,604 KB
testcase_33 AC 147 ms
16,320 KB
testcase_34 AC 135 ms
15,936 KB
testcase_35 AC 53 ms
12,800 KB
testcase_36 AC 77 ms
13,696 KB
testcase_37 AC 103 ms
14,652 KB
testcase_38 AC 145 ms
16,320 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