結果

問題 No.2980 Planar Tree 2
ユーザー makichanmakichan
提出日時 2024-12-04 00:43:30
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 234 ms / 2,000 ms
コード長 1,045 bytes
コンパイル時間 5,356 ms
コンパイル使用メモリ 312,188 KB
実行使用メモリ 34,432 KB
最終ジャッジ日時 2024-12-04 00:43:43
合計ジャッジ時間 11,078 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 214 ms
15,688 KB
testcase_01 AC 202 ms
15,696 KB
testcase_02 AC 203 ms
15,684 KB
testcase_03 AC 6 ms
9,472 KB
testcase_04 AC 6 ms
9,496 KB
testcase_05 AC 207 ms
15,872 KB
testcase_06 AC 195 ms
15,872 KB
testcase_07 AC 233 ms
15,816 KB
testcase_08 AC 201 ms
15,872 KB
testcase_09 AC 198 ms
15,616 KB
testcase_10 AC 191 ms
15,744 KB
testcase_11 AC 207 ms
15,872 KB
testcase_12 AC 226 ms
15,744 KB
testcase_13 AC 205 ms
15,872 KB
testcase_14 AC 200 ms
15,872 KB
testcase_15 AC 183 ms
34,432 KB
testcase_16 AC 7 ms
9,472 KB
testcase_17 AC 7 ms
9,600 KB
testcase_18 AC 7 ms
9,572 KB
testcase_19 AC 6 ms
9,472 KB
testcase_20 AC 8 ms
9,500 KB
testcase_21 AC 7 ms
9,600 KB
testcase_22 AC 6 ms
9,484 KB
testcase_23 AC 8 ms
9,600 KB
testcase_24 AC 6 ms
9,472 KB
testcase_25 AC 5 ms
9,428 KB
testcase_26 AC 213 ms
16,640 KB
testcase_27 AC 234 ms
16,604 KB
testcase_28 AC 191 ms
16,768 KB
testcase_29 AC 127 ms
16,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using mint = atcoder::static_modint<998244353>;
//using mint = atcoder::static_modint<1000000007>;
using namespace std;
using namespace atcoder;
using ld = long double;
using ll = long long;
#define mp(a,b) make_pair(a,b)
#define rep(i,s,n) for(int i=s; i<n; i++)
const vector<int> dx{1,0,-1,0},dy{0,1,0,-1};

vector<vector<int>> G(200000);
vector<int> subsize(200000,1);
vector<mint> factorial(200001,1);
mint ans=1;
void dfs(int x,int p){
    int k=0;
    for(auto y:G[x]){
        if(y!=p){
            dfs(y,x);
            ans*=factorial[subsize[y]];
            subsize[x]+=subsize[y];
            k+=subsize[y];
        }
        else{
            k++;
        }
    }
    ans*=factorial[G[x].size()];
    ans/=factorial[k];
}

int main(){
    int n;cin >> n;
    int u,v;
    rep(i,0,n-1){
        cin >> u >> v,u--,v--;
        G[u].push_back(v);
        swap(u,v);
        G[u].push_back(v);
    }
    rep(i,1,200001)factorial[i]=i*factorial[i-1];
    dfs(0,-1);
    cout << ans.val();
}
0