結果

問題 No.1817 Reversed Edges
ユーザー asaringoasaringo
提出日時 2022-01-22 03:13:45
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 94 ms / 2,000 ms
コード長 1,336 bytes
コンパイル時間 1,670 ms
コンパイル使用メモリ 168,580 KB
実行使用メモリ 19,584 KB
最終ジャッジ日時 2024-05-04 21:57:52
合計ジャッジ時間 4,379 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
5,888 KB
testcase_01 AC 3 ms
5,760 KB
testcase_02 AC 3 ms
6,016 KB
testcase_03 AC 3 ms
5,760 KB
testcase_04 AC 3 ms
5,888 KB
testcase_05 AC 3 ms
5,760 KB
testcase_06 AC 2 ms
6,016 KB
testcase_07 AC 77 ms
9,600 KB
testcase_08 AC 37 ms
7,680 KB
testcase_09 AC 74 ms
9,536 KB
testcase_10 AC 42 ms
7,936 KB
testcase_11 AC 52 ms
8,576 KB
testcase_12 AC 86 ms
10,240 KB
testcase_13 AC 82 ms
10,240 KB
testcase_14 AC 86 ms
10,240 KB
testcase_15 AC 87 ms
10,240 KB
testcase_16 AC 86 ms
10,240 KB
testcase_17 AC 86 ms
10,312 KB
testcase_18 AC 94 ms
10,112 KB
testcase_19 AC 84 ms
10,240 KB
testcase_20 AC 88 ms
10,240 KB
testcase_21 AC 86 ms
10,240 KB
testcase_22 AC 59 ms
10,256 KB
testcase_23 AC 59 ms
10,332 KB
testcase_24 AC 90 ms
19,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std ;
typedef long long ll ;
typedef long double ld ;
typedef pair<ll,ll> P ;
typedef tuple<bool,ll,ll,ll> TP ;
#define chmin(a,b) a = min(a,b)
#define chmax(a,b) a = max(a,b)
#define bit_count(x) __builtin_popcountll(x)
#define gcd(a,b) __gcd(a,b)
#define lcm(a,b) a / gcd(a,b) * b
#define rep(i,n) for(int i = 0 ; i < n ; i++)
#define rrep(i,a,b) for(int i = a ; i < b ; i++)
#define endl "\n"

int n ;
vector<int> G[101010] ;
int dp[101010][2] ;
int ep[101010] ;

void dfs(int v , int prev){
    int dir = 0 , rev = 0 ;
    for(int i = 0 ; i < G[v].size() ; i++){
        int u = G[v][i] ;
        if(u == prev) continue ;
        dfs(u,v) ;
        dir += dp[u][0] ;
        rev += dp[u][1] ;
        if(v < u) dir++ ;
        if(v > u) rev++ ;
    }
    dp[v][0] = dir ;
    dp[v][1] = rev ;
}

void rec(int v , int prev){
    if(prev == -1) ep[v] = dp[v][1] ;
    else ep[v] = ep[prev] - (int)(prev > v) + (int)(prev < v) ;
    for(int i = 0 ; i < G[v].size() ; i++){
        int u = G[v][i] ;
        if(u == prev) continue ;
        rec(u,v) ;
    }
}

int main(){
    cin >> n ;
    rep(i,n-1){
        int a ,b ;
        cin >> a >> b ;
        a-- ; b-- ;
        G[a].push_back(b) ;
        G[b].push_back(a) ;
    }
    dfs(0,-1) ; rec(0,-1) ;
    rep(i,n) cout << ep[i] << endl ;
}
0