結果

問題 No.758 VVVVV
ユーザー kotatsugamekotatsugame
提出日時 2020-03-05 17:50:57
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 77 ms / 2,000 ms
コード長 641 bytes
コンパイル時間 684 ms
コンパイル使用メモリ 71,552 KB
実行使用メモリ 9,600 KB
最終ジャッジ日時 2024-10-14 02:02:41
合計ジャッジ時間 2,350 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,528 KB
testcase_01 AC 3 ms
6,528 KB
testcase_02 AC 4 ms
6,400 KB
testcase_03 AC 74 ms
9,472 KB
testcase_04 AC 35 ms
7,808 KB
testcase_05 AC 26 ms
7,552 KB
testcase_06 AC 23 ms
7,296 KB
testcase_07 AC 73 ms
9,472 KB
testcase_08 AC 38 ms
7,936 KB
testcase_09 AC 15 ms
6,912 KB
testcase_10 AC 27 ms
7,592 KB
testcase_11 AC 74 ms
9,600 KB
testcase_12 AC 20 ms
7,168 KB
testcase_13 AC 25 ms
7,368 KB
testcase_14 AC 15 ms
6,912 KB
testcase_15 AC 10 ms
6,784 KB
testcase_16 AC 12 ms
6,912 KB
testcase_17 AC 63 ms
9,216 KB
testcase_18 AC 34 ms
7,936 KB
testcase_19 AC 76 ms
9,472 KB
testcase_20 AC 22 ms
7,296 KB
testcase_21 AC 24 ms
7,296 KB
testcase_22 AC 77 ms
9,472 KB
testcase_23 AC 4 ms
6,528 KB
testcase_24 AC 3 ms
6,528 KB
testcase_25 AC 3 ms
6,528 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:32:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   32 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<vector>
using namespace std;
int N;
vector<int>G[1<<17];
int ec;
void dfs(int u,int p)
{
	bool isr=true;
	for(int v:G[u])
	{
		if(v!=p)
		{
			dfs(v,u);
			isr=false;
		}
	}
	if(isr)ec++;
}
long mod=1e9+7;
long power(long a,long b){return b?power(a*a%mod,b/2)*(b%2?a:1)%mod:1;}
long comb(int N,int K)
{
	long x=1,y=1;
	for(int i=1;i<=K;i++)
	{
		x=x*(N-i+1)%mod;
		y=y*i%mod;
	}
	return x*power(y,mod-2)%mod;
}
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);
	cout<<comb(N-1,ec-1)*comb(N-2,ec-1)%mod*power(ec,mod-2)%mod<<endl;
}
0