結果
問題 | No.827 総神童数 |
ユーザー | ttttan2 |
提出日時 | 2019-05-07 17:24:05 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 373 ms / 2,000 ms |
コード長 | 2,159 bytes |
コンパイル時間 | 1,573 ms |
コンパイル使用メモリ | 165,840 KB |
実行使用メモリ | 17,408 KB |
最終ジャッジ日時 | 2024-07-01 23:34:54 |
合計ジャッジ時間 | 9,513 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 3 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,944 KB |
testcase_09 | AC | 325 ms
17,408 KB |
testcase_10 | AC | 109 ms
8,448 KB |
testcase_11 | AC | 6 ms
6,944 KB |
testcase_12 | AC | 45 ms
6,944 KB |
testcase_13 | AC | 263 ms
14,592 KB |
testcase_14 | AC | 11 ms
6,940 KB |
testcase_15 | AC | 100 ms
7,936 KB |
testcase_16 | AC | 267 ms
14,720 KB |
testcase_17 | AC | 316 ms
16,648 KB |
testcase_18 | AC | 128 ms
10,536 KB |
testcase_19 | AC | 367 ms
17,408 KB |
testcase_20 | AC | 260 ms
13,696 KB |
testcase_21 | AC | 183 ms
10,880 KB |
testcase_22 | AC | 287 ms
14,948 KB |
testcase_23 | AC | 4 ms
6,944 KB |
testcase_24 | AC | 331 ms
15,996 KB |
testcase_25 | AC | 252 ms
13,188 KB |
testcase_26 | AC | 339 ms
15,872 KB |
testcase_27 | AC | 216 ms
11,776 KB |
testcase_28 | AC | 209 ms
12,356 KB |
testcase_29 | AC | 163 ms
10,848 KB |
testcase_30 | AC | 46 ms
6,944 KB |
testcase_31 | AC | 127 ms
8,576 KB |
testcase_32 | AC | 120 ms
8,448 KB |
testcase_33 | AC | 373 ms
16,908 KB |
testcase_34 | AC | 329 ms
15,984 KB |
testcase_35 | AC | 129 ms
9,632 KB |
testcase_36 | AC | 189 ms
10,880 KB |
testcase_37 | AC | 255 ms
12,928 KB |
testcase_38 | AC | 364 ms
16,768 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; typedef long long ll; typedef pair<int,int> pii; typedef pair<pii,int> ppii; typedef pair<int,pii> pipi; typedef pair<ll,ll> pll; typedef pair<ll,pll> plpl; typedef tuple<ll,ll,ll> tl; ll mod=1000000007; ll inf=1000000000000000000; #define rep(i,m,n) for(int i=m;i<n;i++) #define rrep(i,n,m) for(int i=n;i>=m;i--) ll lmax(ll a,ll b){ if(a<b)return b; else return a; } ll lmin(ll a,ll b){ if(a<b)return a; else return b; } int dh[4]={-1,1,0,0}; int dw[4]={0,0,1,-1}; ll gya[200010]; ll kai[200010]; ll beki(ll n,ll k){ ll ret=1; ll now=n; while(k>0){ if(k%2==1){ ret*=now; ret%=mod; } now*=now; now%=mod; k/=2; } return ret; } ll gyaku(ll n){ return beki(n,mod-2); } void nckinit(ll n){ gya[0]=1; gya[1]=1; for(int i=2;i<=n;i++){ gya[i]=gya[i-1]*gyaku(i); gya[i]%=mod; } kai[0]=1; kai[1]=1; for(int i=2;i<=n;i++){ kai[i]=kai[i-1]*i; kai[i]%=mod; } } ll nck(ll n,ll k){ if(k<0)return 0; if(k==0||n==k)return 1; ll ret=kai[n]; ret*=gya[n-k]; ret%=mod; ret*=gya[k]; ret%=mod; return ret; } ll npk(ll n,ll k){ if(k<0)return 0; if(k==0)return 1; ll ret=kai[n]; ret*=gya[n-k]; ret%=mod; return ret; } int main(){ int n;cin>>n; vector<int> v[n+1]; rep(i,0,n-1){ int a,b;cin>>a>>b; v[a].push_back(b); v[b].push_back(a); } queue<int> q; q.push(1); queue<int> d; d.push(1); bool used[n+1];fill(used,used+n+1,false); used[1]=true; ll ans=0; nckinit(n+1); while(q.size()>0){ int now=q.front(); ll dis=d.front(); q.pop();d.pop(); ll sum=nck(n,dis)*kai[n-dis]; sum%=mod; sum*=kai[dis-1]; sum%=mod; ans+=sum; //cout<<sum<<" "; ans%=mod; rep(i,0,v[now].size()){ int ne=v[now][i]; if(used[ne])continue; used[ne]=true; q.push(ne); d.push(dis+1); } } cout<<ans<<endl; }