結果

問題 No.2427 Tree Distance Two
ユーザー isaunoyaisaunoya
提出日時 2024-12-04 14:53:02
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 191 ms / 2,000 ms
コード長 2,007 bytes
コンパイル時間 3,514 ms
コンパイル使用メモリ 248,944 KB
実行使用メモリ 22,016 KB
最終ジャッジ日時 2024-12-04 14:53:13
合計ジャッジ時間 10,356 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 176 ms
19,968 KB
testcase_04 AC 3 ms
5,248 KB
testcase_05 AC 191 ms
19,968 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 151 ms
20,840 KB
testcase_08 AC 158 ms
22,016 KB
testcase_09 AC 151 ms
20,864 KB
testcase_10 AC 158 ms
21,376 KB
testcase_11 AC 187 ms
21,380 KB
testcase_12 AC 151 ms
20,436 KB
testcase_13 AC 161 ms
20,380 KB
testcase_14 AC 108 ms
19,712 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 2 ms
5,248 KB
testcase_18 AC 1 ms
5,248 KB
testcase_19 AC 2 ms
5,248 KB
testcase_20 AC 5 ms
5,248 KB
testcase_21 AC 5 ms
5,248 KB
testcase_22 AC 2 ms
5,248 KB
testcase_23 AC 2 ms
5,248 KB
testcase_24 AC 4 ms
5,248 KB
testcase_25 AC 32 ms
7,680 KB
testcase_26 AC 91 ms
13,568 KB
testcase_27 AC 63 ms
10,752 KB
testcase_28 AC 148 ms
18,816 KB
testcase_29 AC 125 ms
16,896 KB
testcase_30 AC 100 ms
13,312 KB
testcase_31 AC 52 ms
9,856 KB
testcase_32 AC 90 ms
13,312 KB
testcase_33 AC 78 ms
12,032 KB
testcase_34 AC 23 ms
6,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#if defined(local)
#include "./noya/debug.hpp"
#else
#define debug(...) 42
#endif

#include "bits/stdc++.h"

using namespace std;
#define rep1(a) for (int i = 0; i < a; i++)
#define rep2(i, a) for (int i = 0; i < a; i++)
#define rep3(i, a, b) for (int i = a; i < b; i++)
#define rep4(i, a, b, c) for (int i = a; i < b; i += c)
#define overload4(a, b, c, d, e, ...) e
#define rep(...) overload4(__VA_ARGS__, rep4, rep3, rep2, rep1)(__VA_ARGS__)
#define pb emplace_back
template <typename T, typename T2> void cmin(T &x, const T2 &y) {
  x = x < y ? x : y;
}
template <typename T, typename T2> void cmax(T &x, const T2 &y) {
  x = x > y ? x : y;
}


#include <cstdint>
using ll = int64_t;
using ull = uint64_t;
namespace noya {
template <class T> constexpr T infty = 0;
template <> constexpr int infty<int> = 1010000000;
template <> constexpr ll infty<ll> = 2020000000000000000;
template <> constexpr unsigned infty<unsigned> = infty<int>;
template <>
constexpr ull infty<ull> = infty<ll>;
template <>
constexpr __int128 infty<__int128> =
    __int128(infty<ll>) * 2000000000000000000;
template <> constexpr double infty<double> = infty<ll>;
template <> constexpr long double infty<long double> = infty<ll>;
} // namespace noya


using vi = vector<int>;
using vl = vector<ll>;
using pii = pair<int, int>;
using pll = pair<ll, ll>;
template <class T> using vc = vector<T>;
const int INF = 1010000000;
const ll LNF = 2020000000000000000;
#define sz(x) int((x).size())
#define all(x) begin(x), end(x)
#define fi first
#define se second

namespace noya {}


mt19937 rng(time(NULL));
using namespace noya;

void solve() {
  int N;
  cin >> N;
  vc<vi> g(N);
  rep(N - 1) {
    int a, b;
    cin >> a >> b;
    a--;
    b--;
    g[a].pb(b);
    g[b].pb(a);
  }
  rep(u, N) {
    ll ans = 0;
    for (auto v : g[u])
      ans += sz(g[v]) - 1;
    cout<<ans<<"\n";
  }
}

int main() {
  ios_base::sync_with_stdio(false);
  cin.tie(nullptr);
  int t = 1;
  // cin >> t;
  while (t--) {
    solve();
  }
  return 0;
}
0