結果

問題 No.1817 Reversed Edges
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2023-05-24 01:27:22
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 195 ms / 2,000 ms
コード長 1,114 bytes
コンパイル時間 1,175 ms
コンパイル使用メモリ 115,892 KB
実行使用メモリ 15,232 KB
最終ジャッジ日時 2024-06-02 12:00:22
合計ジャッジ時間 5,674 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 167 ms
8,960 KB
testcase_08 AC 78 ms
5,888 KB
testcase_09 AC 156 ms
8,576 KB
testcase_10 AC 91 ms
6,400 KB
testcase_11 AC 118 ms
7,296 KB
testcase_12 AC 188 ms
9,600 KB
testcase_13 AC 190 ms
9,728 KB
testcase_14 AC 191 ms
9,728 KB
testcase_15 AC 191 ms
9,728 KB
testcase_16 AC 189 ms
9,728 KB
testcase_17 AC 190 ms
9,696 KB
testcase_18 AC 186 ms
9,856 KB
testcase_19 AC 195 ms
9,728 KB
testcase_20 AC 190 ms
9,728 KB
testcase_21 AC 189 ms
9,728 KB
testcase_22 AC 156 ms
9,860 KB
testcase_23 AC 157 ms
9,856 KB
testcase_24 AC 179 ms
15,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <cmath>
#include <map>
#include <set>
#include <iomanip>
#include <queue>
#include <algorithm>
#include <numeric>
#include <deque>
#include <complex>
#include <cassert>

using namespace std;
using ll = long long;
int x=0;
vector<int> ans;

void dfs(vector<vector<pair<int, int>>> &E, int from, int p){

    for(auto [to, c] : E[from]){
        if (p == to) continue;
        if (c == -1) x++;
        dfs(E, to, from);
    }
}

void dfs2(vector<vector<pair<int, int>>> &E, int from, int p){

    for(auto [to, c] : E[from]){
        if (p == to) continue;
        if (c == 1) ans[to] = ans[from]+1;
        else ans[to] = ans[from]-1;
        dfs2(E, to, from);
    }
}

int main(){

    int N, a, b;
    cin >> N;
    ans.resize(N);
    vector<vector<pair<int, int>>> E(N);
    for (int i=0; i<N-1; i++){
        cin >> a >> b; a--; b--;
        if (a > b) swap(a, b);
        E[a].push_back({b, 1});
        E[b].push_back({a, -1});
    }

    dfs(E, 0, -1);
    ans[0] = x;
    dfs2(E, 0, -1);

    for (int i=0; i<N; i++) cout << ans[i] << endl;

    return 0;
}
0