結果

問題 No.827 総神童数
ユーザー kotatsugamekotatsugame
提出日時 2019-05-04 01:23:10
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 343 ms / 2,000 ms
コード長 645 bytes
コンパイル時間 815 ms
コンパイル使用メモリ 70,924 KB
実行使用メモリ 30,292 KB
最終ジャッジ日時 2024-06-10 19:59:19
合計ジャッジ時間 8,603 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
12,692 KB
testcase_01 AC 8 ms
12,640 KB
testcase_02 AC 8 ms
12,576 KB
testcase_03 AC 8 ms
12,664 KB
testcase_04 AC 8 ms
12,692 KB
testcase_05 AC 8 ms
12,840 KB
testcase_06 AC 8 ms
12,688 KB
testcase_07 AC 9 ms
12,740 KB
testcase_08 AC 8 ms
12,696 KB
testcase_09 AC 338 ms
30,292 KB
testcase_10 AC 117 ms
18,048 KB
testcase_11 AC 14 ms
12,952 KB
testcase_12 AC 56 ms
15,492 KB
testcase_13 AC 274 ms
27,392 KB
testcase_14 AC 21 ms
13,368 KB
testcase_15 AC 117 ms
18,440 KB
testcase_16 AC 287 ms
23,216 KB
testcase_17 AC 315 ms
25,844 KB
testcase_18 AC 144 ms
19,604 KB
testcase_19 AC 343 ms
18,904 KB
testcase_20 AC 240 ms
17,244 KB
testcase_21 AC 176 ms
16,044 KB
testcase_22 AC 265 ms
17,588 KB
testcase_23 AC 10 ms
12,776 KB
testcase_24 AC 306 ms
18,048 KB
testcase_25 AC 224 ms
16,872 KB
testcase_26 AC 305 ms
18,192 KB
testcase_27 AC 224 ms
16,388 KB
testcase_28 AC 218 ms
16,272 KB
testcase_29 AC 156 ms
15,592 KB
testcase_30 AC 51 ms
13,632 KB
testcase_31 AC 124 ms
14,900 KB
testcase_32 AC 125 ms
14,872 KB
testcase_33 AC 335 ms
18,620 KB
testcase_34 AC 304 ms
18,136 KB
testcase_35 AC 126 ms
15,008 KB
testcase_36 AC 178 ms
15,940 KB
testcase_37 AC 232 ms
16,796 KB
testcase_38 AC 328 ms
18,512 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:15:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   15 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<vector>
using namespace std;
long mod=1e9+7,F[2<<17];
long power(long a,long b){return b?power(a*a%mod,b/2)*(b%2?a:1)%mod:1;}
int d[2<<17];
vector<int>G[2<<17];
void dfs(int u,int p,int di)
{
	d[u]=di;
	for(int i=0;i<G[u].size();i++)
		if(G[u][i]!=p)dfs(G[u][i],u,di+1);
}
int N;
main()
{
	cin>>N;
	for(int i=1;i<N;i++)
	{
		int a,b;cin>>a>>b;
		a--,b--;
		G[a].push_back(b);
		G[b].push_back(a);
	}
	dfs(0,-1,0);
	F[0]=1;
	for(int i=1;i<2<<17;i++)F[i]=F[i-1]*i%mod;
	long ans=0;
	for(int i=0;i<N;i++)
	{
		(ans+=F[N]*(N-d[i])%mod*power((d[i]+1)*F[N-d[i]]%mod,mod-2)%mod*F[N-1-d[i]]%mod)%=mod;
	}
	cout<<ans<<endl;
}
0