結果

問題 No.1817 Reversed Edges
ユーザー bonKotsubonKotsu
提出日時 2022-07-24 20:45:37
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 866 bytes
コンパイル時間 6,118 ms
コンパイル使用メモリ 259,940 KB
実行使用メモリ 11,688 KB
最終ジャッジ日時 2023-09-20 21:07:09
合計ジャッジ時間 10,751 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,764 KB
testcase_01 AC 3 ms
5,744 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 4 ms
5,992 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 184 ms
9,372 KB
testcase_23 AC 180 ms
9,500 KB
testcase_24 AC 200 ms
11,688 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];

void dfs(int v, int d, int p = -1) {
  dist[v] = d;
  for (auto nv : g[v]) {
    if (nv == p) continue;
    dfs(nv, d+1, 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, 0);
  rep(i,n) cout << dist[i] << endl;
  
  return 0;
}
0