結果

問題 No.2980 Planar Tree 2
ユーザー makichanmakichan
提出日時 2024-12-04 00:24:52
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 252 ms / 2,000 ms
コード長 1,174 bytes
コンパイル時間 5,466 ms
コンパイル使用メモリ 310,824 KB
実行使用メモリ 35,324 KB
最終ジャッジ日時 2024-12-04 00:26:25
合計ジャッジ時間 11,107 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 212 ms
16,628 KB
testcase_01 AC 252 ms
16,476 KB
testcase_02 AC 211 ms
16,516 KB
testcase_03 AC 33 ms
10,428 KB
testcase_04 AC 34 ms
10,376 KB
testcase_05 AC 223 ms
16,720 KB
testcase_06 AC 214 ms
16,824 KB
testcase_07 AC 207 ms
16,652 KB
testcase_08 AC 246 ms
16,708 KB
testcase_09 AC 205 ms
16,416 KB
testcase_10 AC 203 ms
16,484 KB
testcase_11 AC 212 ms
16,520 KB
testcase_12 AC 205 ms
16,504 KB
testcase_13 AC 250 ms
16,716 KB
testcase_14 AC 209 ms
16,536 KB
testcase_15 AC 191 ms
35,324 KB
testcase_16 AC 34 ms
10,408 KB
testcase_17 AC 34 ms
10,424 KB
testcase_18 AC 34 ms
10,256 KB
testcase_19 AC 34 ms
10,340 KB
testcase_20 AC 34 ms
10,328 KB
testcase_21 AC 34 ms
10,260 KB
testcase_22 AC 33 ms
10,204 KB
testcase_23 AC 34 ms
10,348 KB
testcase_24 AC 35 ms
10,240 KB
testcase_25 AC 33 ms
10,312 KB
testcase_26 AC 204 ms
17,576 KB
testcase_27 AC 222 ms
17,576 KB
testcase_28 AC 201 ms
17,412 KB
testcase_29 AC 140 ms
17,232 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),invfactorial(200001,1);
mint ans=1;
void dfs(int x,int p){
    int c=0;
    if(p!=-1)c++;
    mint k=1;
    for(auto y:G[x])if(y!=p){
        c++;
        dfs(y,x);
        k*=factorial[subsize[y]];
        subsize[x]+=subsize[y];
    }
    k*=factorial[c];
    if(p!=-1)k*=invfactorial[subsize[x]];
    else k*=invfactorial[subsize[x]-1];
    ans*=k;
    // cout << x << " " << k.val() << "\n";
}

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];
        invfactorial[i]=factorial[i].inv();
    }
    dfs(0,-1);
    cout << ans.val();
}
0