結果

問題 No.2427 Tree Distance Two
ユーザー ebi_flyebi_fly
提出日時 2023-08-12 01:45:50
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 414 ms / 2,000 ms
コード長 1,195 bytes
コンパイル時間 2,153 ms
コンパイル使用メモリ 204,140 KB
実行使用メモリ 23,040 KB
最終ジャッジ日時 2024-11-18 21:48:45
合計ジャッジ時間 10,189 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 414 ms
21,136 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 406 ms
21,208 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 331 ms
21,960 KB
testcase_08 AC 354 ms
23,040 KB
testcase_09 AC 344 ms
22,004 KB
testcase_10 AC 353 ms
22,400 KB
testcase_11 AC 342 ms
22,656 KB
testcase_12 AC 364 ms
21,580 KB
testcase_13 AC 370 ms
21,392 KB
testcase_14 AC 235 ms
20,864 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 2 ms
5,248 KB
testcase_19 AC 2 ms
5,248 KB
testcase_20 AC 8 ms
5,248 KB
testcase_21 AC 9 ms
5,248 KB
testcase_22 AC 3 ms
5,248 KB
testcase_23 AC 3 ms
5,248 KB
testcase_24 AC 7 ms
5,248 KB
testcase_25 AC 84 ms
7,936 KB
testcase_26 AC 232 ms
14,168 KB
testcase_27 AC 149 ms
11,180 KB
testcase_28 AC 372 ms
19,764 KB
testcase_29 AC 314 ms
17,808 KB
testcase_30 AC 216 ms
14,080 KB
testcase_31 AC 127 ms
10,368 KB
testcase_32 AC 219 ms
13,824 KB
testcase_33 AC 177 ms
12,560 KB
testcase_34 AC 42 ms
6,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#define rep(i, a, n) for (int i = (int)(a); i < (int)(n); i++)

using i64 = std::int64_t;

template <class T> struct Edge {
    int to;
    T cost;
    Edge(int _to, T _cost = 1) : to(_to), cost(_cost) {}
};

template <class T> struct Graph : std::vector<std::vector<Edge<T>>> {
    using std::vector<std::vector<Edge<T>>>::vector;
    void add_edge(int u, int v, T w, bool directed = false) {
        (*this)[u].emplace_back(v, w);
        if (directed) return;
        (*this)[v].emplace_back(u, w);
    }
};

struct graph : std::vector<std::vector<int>> {
    using std::vector<std::vector<int>>::vector;
    void add_edge(int u, int v, bool directed = false) {
        (*this)[u].emplace_back(v);
        if (directed) return;
        (*this)[v].emplace_back(u);
    }
};

int main() {
    int n;
    std::cin >> n;
    graph g(n);
    std::vector<int> deg(n, 0);
    rep(i,0,n-1) {
        int u,v;
        std::cin >> u >>  v;
        u--; v--;
        g.add_edge(u, v);
        deg[u]++;
        deg[v]++;
    }
    rep(i,0,n) {
        int ans = 0;
        for(auto nv: g[i]) {
            ans += deg[nv] - 1;
        }
        std::cout << ans << '\n';
    }
}
0