結果

問題 No.827 総神童数
ユーザー 👑 emthrmemthrm
提出日時 2019-05-04 16:57:23
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 157 ms / 2,000 ms
コード長 1,747 bytes
コンパイル時間 1,329 ms
コンパイル使用メモリ 126,720 KB
実行使用メモリ 23,552 KB
最終ジャッジ日時 2024-06-23 02:29:51
合計ジャッジ時間 4,816 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
8,044 KB
testcase_01 AC 3 ms
8,192 KB
testcase_02 AC 3 ms
8,064 KB
testcase_03 AC 3 ms
8,192 KB
testcase_04 AC 3 ms
8,192 KB
testcase_05 AC 4 ms
8,008 KB
testcase_06 AC 3 ms
8,192 KB
testcase_07 AC 4 ms
8,064 KB
testcase_08 AC 4 ms
8,064 KB
testcase_09 AC 157 ms
23,552 KB
testcase_10 AC 50 ms
12,784 KB
testcase_11 AC 7 ms
8,392 KB
testcase_12 AC 23 ms
10,500 KB
testcase_13 AC 118 ms
20,868 KB
testcase_14 AC 8 ms
8,704 KB
testcase_15 AC 47 ms
13,312 KB
testcase_16 AC 116 ms
17,800 KB
testcase_17 AC 143 ms
20,116 KB
testcase_18 AC 61 ms
14,208 KB
testcase_19 AC 131 ms
14,936 KB
testcase_20 AC 94 ms
13,296 KB
testcase_21 AC 61 ms
11,748 KB
testcase_22 AC 102 ms
13,548 KB
testcase_23 AC 4 ms
8,192 KB
testcase_24 AC 105 ms
14,272 KB
testcase_25 AC 78 ms
12,672 KB
testcase_26 AC 106 ms
14,280 KB
testcase_27 AC 68 ms
12,288 KB
testcase_28 AC 69 ms
12,160 KB
testcase_29 AC 54 ms
11,316 KB
testcase_30 AC 19 ms
9,088 KB
testcase_31 AC 42 ms
10,700 KB
testcase_32 AC 43 ms
10,496 KB
testcase_33 AC 125 ms
14,848 KB
testcase_34 AC 111 ms
14,232 KB
testcase_35 AC 42 ms
10,752 KB
testcase_36 AC 59 ms
11,732 KB
testcase_37 AC 79 ms
12,672 KB
testcase_38 AC 120 ms
14,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <bitset>
#include <cassert>
#include <cctype>
#include <chrono>
#define _USE_MATH_DEFINES
#include <cmath>
#include <cstdio>
#include <cstring>
#include <ctime>
#include <deque>
#include <functional>
#include <iostream>
#include <iterator>
#include <map>
#include <queue>
#include <random>
#include <set>
#include <sstream>
#include <string>
#include <tuple>
#include <utility>
#include <vector>
using namespace std;

#define FOR(i,m,n) for(int i=(m);i<(n);++i)
#define REP(i,n) FOR(i,0,n)
#define ALL(v) (v).begin(),(v).end()

const int INF = 0x3f3f3f3f;
const long long LINF = 0x3f3f3f3f3f3f3f3fLL;
const double EPS = 1e-8;
const int MOD = 1000000007; // 998244353;
const int dy[] = {1, 0, -1, 0}, dx[] = {0, -1, 0, 1};
/*-------------------------------------------------*/
int cnt[200000] = {};
vector<int> edge[200000];
void dfs(int ver) {
  for (int e : edge[ver]) if (cnt[e] == 0) {
    cnt[e] = cnt[ver] + 1;
    dfs(e);
  }
}

long long mod_inv(long long a, long long mod = MOD) {
  a %= mod;
  if (__gcd(a, mod) != 1) return -1;
  long long b = mod, x = 1, y = 0;
  while (b > 0) {
    long long tmp = a / b;
    a -= tmp * b;
    swap(a, b);
    x -= tmp * y;
    swap(x, y);
  }
  x %= mod;
  if (x < 0) x += mod;
  return x;
}

int main() {
  cin.tie(0); ios::sync_with_stdio(false);
  // freopen("input.txt", "r", stdin);

  int n; cin >> n;
  REP(i, n - 1) {
    int u, v; cin >> u >> v; --u; --v;
    edge[u].emplace_back(v);
    edge[v].emplace_back(u);
  }
  cnt[0] = 1;
  dfs(0);
  long long ans = 0;
  REP(i, n) (ans += mod_inv(cnt[i])) %= MOD;
  FOR(i, 1, n + 1) (ans *= i) %= MOD;
  cout << ans << '\n';
  return 0;
}
0