結果

問題 No.2980 Planar Tree 2
ユーザー 👑 testestesttestestest
提出日時 2024-11-25 10:18:31
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 185 ms / 2,000 ms
コード長 803 bytes
コンパイル時間 5,396 ms
コンパイル使用メモリ 286,136 KB
実行使用メモリ 20,264 KB
最終ジャッジ日時 2024-12-03 23:30:27
合計ジャッジ時間 10,702 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 178 ms
15,120 KB
testcase_01 AC 176 ms
14,968 KB
testcase_02 AC 175 ms
14,900 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 185 ms
15,088 KB
testcase_06 AC 174 ms
15,168 KB
testcase_07 AC 172 ms
14,876 KB
testcase_08 AC 173 ms
15,016 KB
testcase_09 AC 170 ms
14,588 KB
testcase_10 AC 171 ms
14,548 KB
testcase_11 AC 178 ms
14,816 KB
testcase_12 AC 176 ms
14,896 KB
testcase_13 AC 172 ms
14,940 KB
testcase_14 AC 172 ms
15,032 KB
testcase_15 AC 154 ms
20,264 KB
testcase_16 AC 2 ms
6,820 KB
testcase_17 AC 2 ms
6,816 KB
testcase_18 AC 2 ms
6,820 KB
testcase_19 AC 2 ms
6,816 KB
testcase_20 AC 2 ms
6,816 KB
testcase_21 AC 2 ms
6,816 KB
testcase_22 AC 2 ms
6,816 KB
testcase_23 AC 2 ms
6,816 KB
testcase_24 AC 2 ms
6,820 KB
testcase_25 AC 2 ms
6,820 KB
testcase_26 AC 170 ms
16,008 KB
testcase_27 AC 170 ms
15,936 KB
testcase_28 AC 163 ms
15,880 KB
testcase_29 AC 115 ms
15,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/*
dp[v]=vを根とする部分木の頂点を、vを左端として、辺が交わらないように一列に並べる方法の数
dp[v]=ko[v]!*Π(dp[u]*(ko[u]+1))
*/
#include<bits/stdc++.h>
#include<atcoder/modint>
using namespace std;
using modint=atcoder::modint998244353;

int main(){
	int n;
	cin >> n;
	vector<vector<int>>g(n);

	for(int i=0;i<n-1;i++){
		int x,y;
		cin >> x >> y;
		x--;
		y--;
		g[x].push_back(y);
		g[y].push_back(x);
	}

	vector<int>ko(n);
	auto dfs=[&](auto self,int crr,int pre)->modint{
		modint ans=1;
		ko[crr]=0;
		for(auto nxt:g[crr])if(nxt!=pre){
			ans*=self(self,nxt,crr);
			ans*=ko[nxt]+1;
			ko[crr]++;
			ans*=ko[crr];
		}
		return ans;
	};

	modint ans=dfs(dfs,rand()%n,-1);
	modint bunbo=1;
	for(int i=1;i<n;i++)bunbo*=i;
	cout << (ans/bunbo).val() << endl;
}
0