結果

問題 No.1098 LCAs
ユーザー ゆきのんゆきのん
提出日時 2020-06-26 22:13:15
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 501 ms / 2,000 ms
コード長 1,131 bytes
コンパイル時間 1,455 ms
コンパイル使用メモリ 168,976 KB
実行使用メモリ 29,056 KB
最終ジャッジ日時 2024-07-04 21:43:27
合計ジャッジ時間 9,563 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
9,600 KB
testcase_01 AC 5 ms
9,600 KB
testcase_02 AC 4 ms
9,472 KB
testcase_03 AC 3 ms
9,472 KB
testcase_04 AC 3 ms
9,728 KB
testcase_05 AC 4 ms
9,600 KB
testcase_06 AC 3 ms
9,600 KB
testcase_07 AC 4 ms
9,600 KB
testcase_08 AC 4 ms
9,472 KB
testcase_09 AC 4 ms
9,600 KB
testcase_10 AC 5 ms
9,472 KB
testcase_11 AC 5 ms
9,600 KB
testcase_12 AC 4 ms
9,472 KB
testcase_13 AC 6 ms
9,600 KB
testcase_14 AC 6 ms
9,600 KB
testcase_15 AC 6 ms
9,600 KB
testcase_16 AC 5 ms
9,600 KB
testcase_17 AC 7 ms
9,600 KB
testcase_18 AC 460 ms
17,664 KB
testcase_19 AC 447 ms
17,664 KB
testcase_20 AC 456 ms
17,620 KB
testcase_21 AC 440 ms
17,536 KB
testcase_22 AC 441 ms
17,664 KB
testcase_23 AC 380 ms
17,884 KB
testcase_24 AC 437 ms
18,056 KB
testcase_25 AC 425 ms
17,916 KB
testcase_26 AC 456 ms
18,000 KB
testcase_27 AC 461 ms
18,004 KB
testcase_28 AC 480 ms
28,132 KB
testcase_29 AC 501 ms
29,056 KB
testcase_30 AC 487 ms
28,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define fs first
#define sc second
#define pb push_back
#define mp make_pair
#define eb emplace_back
#define ALL(A) A.begin(),A.end()
#define RALL(A) A.rbegin(),A.rend()
typedef long long LL;
typedef pair<LL,LL> P;
template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }
template<typename T> T gcd(T a,T b){return b?gcd(b,a%b):a;}
const LL mod=998244353;
const LL LINF=1LL<<62;
const int INF=1<<30;
int dx[]={1,0,-1,0,-1,1,1,-1};
int dy[]={0,1,0,-1,-1,-1,1,1};

LL a[1<<18];
vector<int> G[1<<18];

LL f(int u,int v){
    LL c = 1;
    a[u] = 1;
    for(auto g:G[u]){
        if(g == v) continue;
        LL l = f(g, u);
        a[u] += 2 * l * c;
        c += l;
    }
    return c;
}



int main(){
    int n;cin >> n;
    for (int i = 0; i < n - 1; i++) {
        int u,v;cin >> u >> v;
        u--,v--;
        G[u].pb(v);
        G[v].pb(u);
    }
    f(0,0);
    for (int i = 0; i < n; i++) {
        cout << a[i] << endl;
    }
    return 0;
}

    
0