結果

問題 No.1817 Reversed Edges
ユーザー iw522iw522
提出日時 2022-01-21 22:32:25
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 170 ms / 2,000 ms
コード長 1,252 bytes
コンパイル時間 1,633 ms
コンパイル使用メモリ 175,900 KB
実行使用メモリ 11,536 KB
最終ジャッジ日時 2024-05-04 13:42:51
合計ジャッジ時間 5,686 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 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 139 ms
9,984 KB
testcase_08 AC 68 ms
6,528 KB
testcase_09 AC 133 ms
9,728 KB
testcase_10 AC 76 ms
6,784 KB
testcase_11 AC 101 ms
7,936 KB
testcase_12 AC 160 ms
10,880 KB
testcase_13 AC 162 ms
10,880 KB
testcase_14 AC 159 ms
10,880 KB
testcase_15 AC 159 ms
11,008 KB
testcase_16 AC 158 ms
10,880 KB
testcase_17 AC 160 ms
10,880 KB
testcase_18 AC 170 ms
10,880 KB
testcase_19 AC 157 ms
10,880 KB
testcase_20 AC 159 ms
10,880 KB
testcase_21 AC 163 ms
10,880 KB
testcase_22 AC 134 ms
11,536 KB
testcase_23 AC 137 ms
11,416 KB
testcase_24 AC 148 ms
10,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define rep(i,n) for(ll i=0; i<(ll)n; i++)
#define reps(i,n) for(ll i=1; i<=(ll)n; i++)
#define repi(i,a,b) for(ll i=(ll)a; i<(ll)b; i++)
#define pb push_back
#define mp make_pair
#define ALL(i) i.begin(),i.end()
ll INF = 1000000000000000;

int main() {
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    ll n; cin >> n;
    vector<vector<ll>> G(n);
    ll a,b;
    rep(i,n-1){
        cin >> a >> b;
        a--; b--;
        G[a].pb(b);
        G[b].pb(a);
    }
    vector<ll> dist(n,-1);
    queue<int> q;
    dist[0]=0;
    q.push(0);
    while(!q.empty()){
        int v=q.front();
        q.pop();
        for(auto nv : G[v]){
            if(dist[nv]!=-1) continue;
            dist[nv]=dist[v]+1;
            q.push(nv);
        }
    }
    q.push(0);
    vector<ll> dist2(n,-1);
    dist2[0]=0;
    ll ans=0;
    while(!q.empty()){
        int v=q.front();
        q.pop();
        for(auto nv : G[v]){
            if(dist2[nv]!=-1) continue;
            if(nv>v) dist2[nv]=dist2[v]+1;
            else dist2[nv]=dist2[v];
            if(v>nv) ans++;
            q.push(nv);
        }
    }
    rep(i,n){
        cout << ans+dist2[i]-(dist[i]-dist2[i])<<endl;
    }
}
0