結果

問題 No.1098 LCAs
ユーザー SmitMangukiyaSmitMangukiya
提出日時 2020-06-26 22:36:49
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 175 ms / 2,000 ms
コード長 1,116 bytes
コンパイル時間 1,507 ms
コンパイル使用メモリ 168,860 KB
実行使用メモリ 32,068 KB
最終ジャッジ日時 2024-07-04 22:22:50
合計ジャッジ時間 4,919 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
10,048 KB
testcase_01 AC 4 ms
9,280 KB
testcase_02 AC 5 ms
11,068 KB
testcase_03 AC 5 ms
10,708 KB
testcase_04 AC 4 ms
9,924 KB
testcase_05 AC 4 ms
9,792 KB
testcase_06 AC 3 ms
10,452 KB
testcase_07 AC 4 ms
9,284 KB
testcase_08 AC 4 ms
10,636 KB
testcase_09 AC 4 ms
10,052 KB
testcase_10 AC 5 ms
10,312 KB
testcase_11 AC 4 ms
9,924 KB
testcase_12 AC 4 ms
9,672 KB
testcase_13 AC 5 ms
10,052 KB
testcase_14 AC 5 ms
9,668 KB
testcase_15 AC 6 ms
11,168 KB
testcase_16 AC 4 ms
9,924 KB
testcase_17 AC 5 ms
9,924 KB
testcase_18 AC 136 ms
18,628 KB
testcase_19 AC 134 ms
18,612 KB
testcase_20 AC 123 ms
18,680 KB
testcase_21 AC 131 ms
18,592 KB
testcase_22 AC 138 ms
18,796 KB
testcase_23 AC 92 ms
18,748 KB
testcase_24 AC 89 ms
18,724 KB
testcase_25 AC 81 ms
18,828 KB
testcase_26 AC 93 ms
18,832 KB
testcase_27 AC 93 ms
18,856 KB
testcase_28 AC 175 ms
30,824 KB
testcase_29 AC 158 ms
32,068 KB
testcase_30 AC 162 ms
30,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

#define int long long
#define ll long long
#define pb push_back
#define mp make_pair
#define f(i,a,n) for(int i=a ; i<n ; i++)
#define rf(i,n,a) for(int i=n ; i>=a ; i--)
#define F first
#define S second
#define all(c) (c).begin(),(c).end()
#define sz(v) (int)(v).size()
#define fast ios::sync_with_stdio(0); cin.tie(0); cout.tie(0)

typedef long double ld;
typedef vector<int> vi;
typedef pair<int,int> pii;
typedef pair<pii,int> ppi;
typedef vector<pii> vpi;

const int inf = 1e9;
const int inf64 = 1e18;
const int MOD = inf + 7;
const int N =2e5 + 5;
vi g[N];
int dp[N];
int ans[N];

void dfs(int node , int p){
   dp[node] = 1;
   for(int u : g[node]){
      if(u != p){
         dfs(u , node);
         dp[node] += dp[u];
      }
   }

   ans[node] = dp[node];
   for(int u : g[node]){
      if(u != p){
         ans[node] += dp[u] * (dp[node] - dp[u]);
      }
   }
}
int32_t main(){
   fast;
   int n;
   cin >> n;

   f(i,0,n-1){
      int u,v;
      cin >> u >> v;
      g[u].pb(v);
      g[v].pb(u);
   }

   dfs(1,0);
   f(i,1,n+1)  cout << ans[i] << "\n";

}
0