結果

問題 No.1098 LCAs
ユーザー milanis48663220milanis48663220
提出日時 2020-06-26 22:18:02
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 412 ms / 2,000 ms
コード長 927 bytes
コンパイル時間 846 ms
コンパイル使用メモリ 85,412 KB
実行使用メモリ 32,128 KB
最終ジャッジ日時 2024-07-04 21:58:22
合計ジャッジ時間 7,135 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 28
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <iomanip>
#include <vector>
#include <queue>
#include <set>
#include <map>

using namespace std;
typedef long long ll;

ll N;
ll cnt[200000];
ll ans[200000];
vector<int> G[200000];
bool used[200000];

void dfs(int v){
    cnt[v] = 1;
    used[v] = true;
    ll sum = 0;
    ll sum_pow_2 = 0;
    for(int to : G[v]){
        if(!used[to]){
            dfs(to);
            cnt[v] += cnt[to];
            sum += cnt[to];
            sum_pow_2 += (cnt[to]*cnt[to]);
        }
    }
    ans[v] = (sum*sum-sum_pow_2);
    ans[v] += 2*cnt[v]-1;
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout << setprecision(10) << fixed;
    cin >> N;
    for(int i = 0; i < N-1; i++){
        int u, v;
        cin >> u >> v;
        u--; v--;
        G[u].push_back(v);
        G[v].push_back(u);
    }
    dfs(0);
    for(int i = 0; i < N; i++) cout << ans[i] << endl;
}
0