結果

問題 No.1817 Reversed Edges
ユーザー bonKotsubonKotsu
提出日時 2022-07-27 23:29:01
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 112 ms / 2,000 ms
コード長 1,101 bytes
コンパイル時間 4,658 ms
コンパイル使用メモリ 261,484 KB
実行使用メモリ 14,080 KB
最終ジャッジ日時 2024-07-17 13:00:32
合計ジャッジ時間 8,347 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
5,888 KB
testcase_01 AC 4 ms
5,760 KB
testcase_02 AC 3 ms
5,888 KB
testcase_03 AC 4 ms
5,888 KB
testcase_04 AC 3 ms
6,016 KB
testcase_05 AC 3 ms
5,888 KB
testcase_06 AC 3 ms
5,888 KB
testcase_07 AC 97 ms
8,960 KB
testcase_08 AC 42 ms
7,512 KB
testcase_09 AC 90 ms
8,960 KB
testcase_10 AC 49 ms
7,680 KB
testcase_11 AC 66 ms
8,192 KB
testcase_12 AC 107 ms
9,472 KB
testcase_13 AC 106 ms
9,472 KB
testcase_14 AC 107 ms
9,600 KB
testcase_15 AC 112 ms
9,728 KB
testcase_16 AC 105 ms
9,428 KB
testcase_17 AC 108 ms
9,416 KB
testcase_18 AC 109 ms
9,472 KB
testcase_19 AC 108 ms
9,472 KB
testcase_20 AC 107 ms
9,600 KB
testcase_21 AC 110 ms
9,472 KB
testcase_22 AC 66 ms
9,464 KB
testcase_23 AC 65 ms
9,600 KB
testcase_24 AC 87 ms
14,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;

#define ll long long
#define rep(i, n) for (int i = 0; i < (n); i++)
#define P pair<int, int>
#define LP pair<ll, ll>
#define fi first
#define se second
#define pb push_back
#define eb emplace_back
#define all(s) s.begin(), s.end()
#define rall(s) s.rbegin(), s.rend()
template<class T>
void chmax(T& a, T b) { a = max(a, b); };
template<class T>
void chmin(T& a, T b) { a = min(a, b); };

int dist[100005];
vector<int> g[100005];
int ans[100005];

void dfs(int v, int p = -1) {
  if (p != -1 && v < p) ans[0]++;
  for (auto nv : g[v]) {
    if (nv == p) continue;
    dfs(nv, v);
  }
  return;
}

void dfs2(int v, int p = -1) {
  if (p != -1 && v < p) ans[v] = ans[p]-1;
  if (p != -1 && v > p) ans[v] = ans[p]+1;
  for (auto nv : g[v]) {
    if (nv == p) continue;
    dfs2(nv, v);
  }
  return;

}

int main() {
  int n;
  cin >> n;
  rep(i,n-1) {
    int a, b;
    cin >> a >> b;
    a--, b--;
    g[a].pb(b);
    g[b].pb(a);
  }
  dfs(0);
  dfs2(0);
  rep(i,n) cout << ans[i] << "\n";
  
  return 0;
}
0