結果

問題 No.827 総神童数
ユーザー kotatsugamekotatsugame
提出日時 2019-05-04 01:23:10
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 386 ms / 2,000 ms
コード長 645 bytes
コンパイル時間 915 ms
コンパイル使用メモリ 67,856 KB
実行使用メモリ 29,952 KB
最終ジャッジ日時 2025-01-02 16:51:29
合計ジャッジ時間 9,013 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
11,648 KB
testcase_01 AC 11 ms
11,648 KB
testcase_02 AC 10 ms
11,648 KB
testcase_03 AC 10 ms
11,648 KB
testcase_04 AC 10 ms
11,904 KB
testcase_05 AC 9 ms
11,648 KB
testcase_06 AC 9 ms
11,648 KB
testcase_07 AC 10 ms
11,648 KB
testcase_08 AC 10 ms
11,648 KB
testcase_09 AC 374 ms
29,952 KB
testcase_10 AC 129 ms
17,280 KB
testcase_11 AC 17 ms
11,904 KB
testcase_12 AC 63 ms
14,592 KB
testcase_13 AC 304 ms
27,136 KB
testcase_14 AC 22 ms
12,288 KB
testcase_15 AC 128 ms
17,664 KB
testcase_16 AC 320 ms
22,912 KB
testcase_17 AC 366 ms
25,600 KB
testcase_18 AC 165 ms
19,072 KB
testcase_19 AC 386 ms
18,432 KB
testcase_20 AC 268 ms
16,768 KB
testcase_21 AC 210 ms
15,360 KB
testcase_22 AC 293 ms
17,280 KB
testcase_23 AC 12 ms
11,648 KB
testcase_24 AC 334 ms
17,920 KB
testcase_25 AC 252 ms
16,512 KB
testcase_26 AC 342 ms
17,920 KB
testcase_27 AC 229 ms
15,872 KB
testcase_28 AC 214 ms
15,872 KB
testcase_29 AC 174 ms
14,976 KB
testcase_30 AC 60 ms
12,672 KB
testcase_31 AC 141 ms
14,336 KB
testcase_32 AC 130 ms
13,952 KB
testcase_33 AC 380 ms
18,560 KB
testcase_34 AC 340 ms
17,792 KB
testcase_35 AC 143 ms
14,208 KB
testcase_36 AC 194 ms
15,360 KB
testcase_37 AC 253 ms
16,384 KB
testcase_38 AC 366 ms
18,304 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