結果

問題 No.1098 LCAs
ユーザー NewGardenNewGarden
提出日時 2020-06-26 21:58:06
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 279 ms / 2,000 ms
コード長 1,012 bytes
コンパイル時間 1,699 ms
コンパイル使用メモリ 172,228 KB
実行使用メモリ 28,160 KB
最終ジャッジ日時 2024-07-04 21:02:41
合計ジャッジ時間 6,453 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
10,240 KB
testcase_01 AC 7 ms
10,240 KB
testcase_02 AC 6 ms
10,240 KB
testcase_03 AC 6 ms
10,240 KB
testcase_04 AC 7 ms
10,240 KB
testcase_05 AC 6 ms
10,240 KB
testcase_06 AC 7 ms
10,240 KB
testcase_07 AC 6 ms
10,240 KB
testcase_08 AC 7 ms
10,240 KB
testcase_09 AC 7 ms
10,240 KB
testcase_10 AC 6 ms
10,240 KB
testcase_11 AC 6 ms
10,368 KB
testcase_12 AC 7 ms
10,240 KB
testcase_13 AC 8 ms
10,240 KB
testcase_14 AC 8 ms
10,368 KB
testcase_15 AC 8 ms
10,368 KB
testcase_16 AC 7 ms
10,240 KB
testcase_17 AC 8 ms
10,240 KB
testcase_18 AC 230 ms
16,768 KB
testcase_19 AC 225 ms
16,896 KB
testcase_20 AC 236 ms
16,768 KB
testcase_21 AC 221 ms
16,768 KB
testcase_22 AC 229 ms
16,768 KB
testcase_23 AC 173 ms
19,448 KB
testcase_24 AC 170 ms
19,448 KB
testcase_25 AC 167 ms
19,652 KB
testcase_26 AC 196 ms
19,528 KB
testcase_27 AC 182 ms
19,528 KB
testcase_28 AC 261 ms
27,136 KB
testcase_29 AC 279 ms
28,160 KB
testcase_30 AC 268 ms
27,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef pair<int,int> P;
typedef long long ll;
typedef long double ld;
const int inf=1e9+7;
const ll longinf=1LL<<60;
#define REP(i,m,n) for(int i=(int)(m) ; i < (int) (n) ; ++i )
#define rep(i,n) REP(i,0,n)
#define F first
#define S second
constexpr char ln = '\n';

const int mx=200010;
const ll mod=1e9+7;


vector<int> v[mx];
vector<int> ne(mx);
vector<ll> cnt(mx,0);


ll dfs(int x, int p){
  ll tmp = 0;
  ne[x] = p;
  for(auto to:v[x]){
    if(to==p) continue;
    tmp += dfs(to,x) + 1;
  }
  return cnt[x] = tmp;
}

int main(){
  int n;
  cin >> n;
  rep(i,n-1){
    int x,y; cin >> x >> y; x--; y--;
    v[x].emplace_back(y);
    v[y].emplace_back(x);
  }
  dfs(0,-1);
  rep(i,n){
    vector<ll> a;
    ll sum = 0;
    for(auto to:v[i]){
      if(to==ne[i]) continue;
      a.emplace_back(cnt[to]+1);
      sum += cnt[to]+1;
    }
    ll ans = 1;
    for(auto it:a){
      ans += it*(sum-it);
    }
    ans += sum*2;
    cout << ans << ln;
  }
  return 0;
}
0