結果

問題 No.1817 Reversed Edges
ユーザー 👑 NachiaNachia
提出日時 2022-01-21 21:28:43
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 50 ms / 2,000 ms
コード長 1,064 bytes
コンパイル時間 695 ms
コンパイル使用メモリ 81,996 KB
実行使用メモリ 10,456 KB
最終ジャッジ日時 2024-05-04 11:57:08
合計ジャッジ時間 3,064 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 39 ms
9,324 KB
testcase_08 AC 19 ms
6,940 KB
testcase_09 AC 38 ms
8,956 KB
testcase_10 AC 23 ms
6,940 KB
testcase_11 AC 28 ms
7,680 KB
testcase_12 AC 50 ms
10,164 KB
testcase_13 AC 44 ms
10,300 KB
testcase_14 AC 45 ms
10,164 KB
testcase_15 AC 48 ms
10,040 KB
testcase_16 AC 46 ms
10,040 KB
testcase_17 AC 45 ms
10,172 KB
testcase_18 AC 44 ms
10,164 KB
testcase_19 AC 43 ms
10,168 KB
testcase_20 AC 43 ms
10,040 KB
testcase_21 AC 45 ms
10,168 KB
testcase_22 AC 31 ms
10,452 KB
testcase_23 AC 33 ms
10,456 KB
testcase_24 AC 38 ms
10,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <cassert>
using namespace std;
using i64 = long long;
using u64 = unsigned long long;
using i32 = int;
using u32 = unsigned int;
#define rep(i,n) for(int i=0; i<(n); i++)

int N;
vector<vector<int>> E;


int main() {
    cin >> N;
    E.resize(N);
    rep(i,N-1){
        int u,v; cin >> u >> v; u--; v--;
        E[u].push_back(v);
        E[v].push_back(u);
    }

    vector<int> I = {0};
    vector<int> P(N,-1);
    rep(i,N){
        int p = I[i];
        for(int e : E[p]) if(P[p] != e){
            P[e] = p;
            I.push_back(e);
        }
    }

    vector<int> path(N, 0);
    for(int i=1; i<N; i++) if(P[i] < i) path[i]++; else path[i]--;
    for(int i=1; i<N; i++) path[I[i]] += path[P[I[i]]];
    int ans = 0;
    for(int i=1; i<N; i++) if(P[i] > i) ans++;
    rep(i,N) cout << (ans + path[i]) << "\n";
    return 0;
}



struct ios_do_not_sync{
    ios_do_not_sync(){
        std::ios::sync_with_stdio(false);
        std::cin.tie(nullptr);
    }
} ios_do_not_sync_instance;
0