結果

問題 No.1817 Reversed Edges
ユーザー nawawannawawan
提出日時 2022-01-21 21:56:18
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 224 ms / 2,000 ms
コード長 1,002 bytes
コンパイル時間 2,087 ms
コンパイル使用メモリ 207,480 KB
実行使用メモリ 14,720 KB
最終ジャッジ日時 2024-05-04 12:46:29
合計ジャッジ時間 7,269 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 190 ms
8,448 KB
testcase_08 AC 94 ms
5,888 KB
testcase_09 AC 179 ms
8,192 KB
testcase_10 AC 105 ms
6,272 KB
testcase_11 AC 132 ms
6,912 KB
testcase_12 AC 221 ms
9,216 KB
testcase_13 AC 212 ms
9,344 KB
testcase_14 AC 218 ms
9,344 KB
testcase_15 AC 209 ms
9,216 KB
testcase_16 AC 209 ms
9,344 KB
testcase_17 AC 223 ms
9,216 KB
testcase_18 AC 220 ms
9,344 KB
testcase_19 AC 212 ms
9,216 KB
testcase_20 AC 218 ms
9,344 KB
testcase_21 AC 224 ms
9,216 KB
testcase_22 AC 181 ms
9,468 KB
testcase_23 AC 181 ms
9,596 KB
testcase_24 AC 194 ms
14,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
    int N;
    cin >> N;
    vector<vector<int>> G(N);
    for(int i = 0; i < N - 1; i++){
        int a, b;
        cin >> a>> b;
        a--;
        b--;
        G[a].push_back(b);
        G[b].push_back(a);
    } 
    vector<int> dp(N);
    auto dfs = [&](auto dfs, int now, int par = -1)->void{
        for(int to : G[now]){
            if(to == par) continue;
            dfs(dfs, to, now);
            dp[now] += dp[to];
            if(now > to) dp[now]++;
        }
    };
    dfs(dfs, 0);
    auto dfs2 = [&](auto dfs2, int now, int temp, int par = -1)->void{
        dp[now] += temp;
        for(int to : G[now]){
            if(to == par) continue;
            if(now > to){
                dfs2(dfs2, to, dp[now] - dp[to] - 1, now);
            }
            else{
                dfs2(dfs2, to, dp[now] - dp[to] + 1, now);
            }
        }
    };
    dfs2(dfs2, 0, 0);
    for(int i = 0; i < N; i++) cout << dp[i] << endl;
}
0