結果

問題 No.827 総神童数
ユーザー DAyamaCTFDAyamaCTF
提出日時 2019-05-11 08:49:34
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 183 ms / 2,000 ms
コード長 1,400 bytes
コンパイル時間 1,653 ms
コンパイル使用メモリ 162,948 KB
実行使用メモリ 28,800 KB
最終ジャッジ日時 2024-07-02 01:08:51
合計ジャッジ時間 6,559 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
11,136 KB
testcase_01 AC 33 ms
11,136 KB
testcase_02 AC 33 ms
11,136 KB
testcase_03 AC 32 ms
11,164 KB
testcase_04 AC 33 ms
11,136 KB
testcase_05 AC 32 ms
11,136 KB
testcase_06 AC 33 ms
11,136 KB
testcase_07 AC 34 ms
11,092 KB
testcase_08 AC 34 ms
11,008 KB
testcase_09 AC 143 ms
28,800 KB
testcase_10 AC 67 ms
16,512 KB
testcase_11 AC 34 ms
11,392 KB
testcase_12 AC 46 ms
13,952 KB
testcase_13 AC 120 ms
25,856 KB
testcase_14 AC 35 ms
11,776 KB
testcase_15 AC 66 ms
16,896 KB
testcase_16 AC 118 ms
21,632 KB
testcase_17 AC 139 ms
24,320 KB
testcase_18 AC 74 ms
18,176 KB
testcase_19 AC 183 ms
18,292 KB
testcase_20 AC 132 ms
16,384 KB
testcase_21 AC 88 ms
14,824 KB
testcase_22 AC 140 ms
16,856 KB
testcase_23 AC 34 ms
11,228 KB
testcase_24 AC 154 ms
17,408 KB
testcase_25 AC 116 ms
16,048 KB
testcase_26 AC 163 ms
17,572 KB
testcase_27 AC 104 ms
15,360 KB
testcase_28 AC 101 ms
15,280 KB
testcase_29 AC 83 ms
14,484 KB
testcase_30 AC 46 ms
12,160 KB
testcase_31 AC 72 ms
13,808 KB
testcase_32 AC 67 ms
13,696 KB
testcase_33 AC 176 ms
17,920 KB
testcase_34 AC 157 ms
17,536 KB
testcase_35 AC 75 ms
13,900 KB
testcase_36 AC 93 ms
14,848 KB
testcase_37 AC 122 ms
16,000 KB
testcase_38 AC 176 ms
17,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

typedef long long ll;
typedef unsigned long long ull;
typedef pair<ll, ll> P;

#define fi first
#define se second
#define repl(i,a,b) for(ll i=(ll)(a);i<(ll)(b);i++)
#define rep(i,n) repl(i,0,n)
#define all(x) (x).begin(),(x).end()
#define dbg(x) cout<<#x"="<<x<<endl
#define mmax(x,y) (x>y?x:y)
#define mmin(x,y) (x<y?x:y)
#define maxch(x,y) x=mmax(x,y)
#define minch(x,y) x=mmin(x,y)
#define uni(x) x.erase(unique(all(x)),x.end())
#define exist(x,y) (find(all(x),y)!=x.end())
#define bcnt __builtin_popcountll

#define INF 1e16
#define mod 1000000007

ll fac[200010],finv[200010];
ll comb(ll n,ll r){
  if(n<0||r<0||n<r)return 0;
  else return (fac[n]*finv[n-r]%mod)*finv[r]%mod;
}

ll mod_pow(ll a,ll n){
  ll res=1;
  while(n>0){
    if(n&1)res=res*a%mod;
    a=a*a%mod;
    n>>=1;
  }
  return res;
}

ll n;
vector<ll> g[200010];
ll res=0;

void dfs(ll v,ll pre,ll d){
  for(ll nv : g[v]){
    if(nv==pre)continue;
    dfs(nv,v,d+1);
  }
  ll add=fac[d]*comb(n,d+1)%mod;
  add*=fac[n-1-d]; add%=mod;
  res+=add; res%=mod;
}

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

  fac[0]=1;
  rep(i,200000)fac[i+1]=fac[i]*(i+1)%mod;
  rep(i,200001)finv[i]=mod_pow(fac[i],mod-2);

  cin>>n;
  rep(i,n-1){
    ll a,b;
    cin>>a>>b;
    a--;b--;
    g[a].push_back(b);
    g[b].push_back(a);
  }
  dfs(0,-1,0);

  cout<<res<<endl;

  return 0;
}
0