結果

問題 No.2504 NOT Path Painting
ユーザー pockynypockyny
提出日時 2024-10-19 16:55:07
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 247 ms / 2,000 ms
コード長 1,285 bytes
コンパイル時間 1,250 ms
コンパイル使用メモリ 85,136 KB
実行使用メモリ 7,536 KB
最終ジャッジ日時 2024-10-19 16:55:16
合計ジャッジ時間 8,530 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 201 ms
6,816 KB
testcase_02 AC 198 ms
6,820 KB
testcase_03 AC 207 ms
6,816 KB
testcase_04 AC 203 ms
6,816 KB
testcase_05 AC 205 ms
6,820 KB
testcase_06 AC 200 ms
6,820 KB
testcase_07 AC 201 ms
6,816 KB
testcase_08 AC 207 ms
6,820 KB
testcase_09 AC 199 ms
6,820 KB
testcase_10 AC 201 ms
6,820 KB
testcase_11 AC 198 ms
6,816 KB
testcase_12 AC 201 ms
6,816 KB
testcase_13 AC 231 ms
6,816 KB
testcase_14 AC 236 ms
6,820 KB
testcase_15 AC 244 ms
6,820 KB
testcase_16 AC 247 ms
6,816 KB
testcase_17 AC 244 ms
6,820 KB
testcase_18 AC 246 ms
6,820 KB
testcase_19 AC 246 ms
7,240 KB
testcase_20 AC 230 ms
7,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <atcoder/modint>
#include <vector>

using namespace std;
using namespace atcoder;
using mint = modint998244353;
int main(){
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);
    int t; cin >> t;
    while(t){
        t--;
        int i,n; cin >> n;
        vector<vector<int>> g(n);
        for(i=0;i<n - 1;i++){
            int u,v; cin >> u >> v; u--; v--;
            g[u].push_back(v); g[v].push_back(u);
        }
        vector<mint> sz(n);
        vector<int> par(n);
        auto dfs = [&](auto &&self,int s,int p)-> void {
            sz[s]++;
            par[s] = p;
            for(int v:g[s]){
                if(v==p) continue;
                self(self,v,s);
                sz[s] += sz[v];
            }
        };
        dfs(dfs,0,-1);
        mint ans = 0;
        mint al = (mint)n*(n + 1)/2;
        for(i=0;i<n;i++){
            mint p = al;
            for(int x:g[i]){
                if(x!=par[i]) p -= sz[x]*(sz[x] + 1)/2;
            }
            if(par[i]!=-1) p -= (n - sz[i])*(n - sz[i] + 1)/2;
            ans += (mint)1/(mint)(1 - p/al);
        }
        for(i=1;i<n;i++){
            mint p = sz[i]*((mint)n - sz[i])/al;
            ans -= (mint)1/(mint)(1 - p);
        }
        cout << ans.val() << "\n";
    }
}
0