結果

問題 No.2427 Tree Distance Two
ユーザー eve__fuyukieve__fuyuki
提出日時 2024-06-13 01:29:15
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 222 ms / 2,000 ms
コード長 596 bytes
コンパイル時間 2,854 ms
コンパイル使用メモリ 204,016 KB
実行使用メモリ 23,020 KB
最終ジャッジ日時 2024-06-13 01:29:28
合計ジャッジ時間 11,705 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 3 ms
6,944 KB
testcase_03 AC 195 ms
21,128 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 209 ms
21,136 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 195 ms
21,876 KB
testcase_08 AC 186 ms
23,020 KB
testcase_09 AC 214 ms
21,856 KB
testcase_10 AC 222 ms
22,456 KB
testcase_11 AC 173 ms
22,680 KB
testcase_12 AC 210 ms
21,608 KB
testcase_13 AC 177 ms
21,292 KB
testcase_14 AC 106 ms
20,704 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 2 ms
6,944 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 5 ms
6,940 KB
testcase_21 AC 6 ms
6,940 KB
testcase_22 AC 3 ms
6,940 KB
testcase_23 AC 3 ms
6,940 KB
testcase_24 AC 5 ms
6,944 KB
testcase_25 AC 45 ms
7,808 KB
testcase_26 AC 106 ms
14,316 KB
testcase_27 AC 62 ms
11,196 KB
testcase_28 AC 190 ms
19,740 KB
testcase_29 AC 135 ms
17,692 KB
testcase_30 AC 96 ms
13,948 KB
testcase_31 AC 56 ms
10,240 KB
testcase_32 AC 100 ms
13,904 KB
testcase_33 AC 91 ms
12,616 KB
testcase_34 AC 24 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

void fast_io() {
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);
}

int main() {
    fast_io();
    int n;
    cin >> n;
    vector<vector<int>> g(n);
    vector<int> deg(n);
    for (int i = 0; i < n - 1; i++) {
        int u, v;
        cin >> u >> v;
        u--, v--;
        g[u].push_back(v);
        g[v].push_back(u);
        deg[u]++;
        deg[v]++;
    }
    for (int v = 0; v < n; v++) {
        long long ans = 0;
        for (int u : g[v]) {
            ans += deg[u] - 1;
        }
        cout << ans << "\n";
    }
}
0