結果

問題 No.2427 Tree Distance Two
ユーザー Hydrogen332Hydrogen332
提出日時 2024-11-13 21:32:43
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 372 ms / 2,000 ms
コード長 569 bytes
コンパイル時間 3,039 ms
コンパイル使用メモリ 249,092 KB
実行使用メモリ 21,968 KB
最終ジャッジ日時 2024-11-13 21:32:56
合計ジャッジ時間 12,356 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 354 ms
19,940 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 372 ms
19,968 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 295 ms
20,808 KB
testcase_08 AC 314 ms
21,968 KB
testcase_09 AC 298 ms
20,992 KB
testcase_10 AC 307 ms
21,248 KB
testcase_11 AC 316 ms
21,484 KB
testcase_12 AC 307 ms
20,408 KB
testcase_13 AC 332 ms
20,224 KB
testcase_14 AC 209 ms
19,584 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 1 ms
5,248 KB
testcase_20 AC 7 ms
5,248 KB
testcase_21 AC 8 ms
5,248 KB
testcase_22 AC 4 ms
5,248 KB
testcase_23 AC 2 ms
5,248 KB
testcase_24 AC 6 ms
5,248 KB
testcase_25 AC 62 ms
7,552 KB
testcase_26 AC 169 ms
13,556 KB
testcase_27 AC 123 ms
10,684 KB
testcase_28 AC 343 ms
18,688 KB
testcase_29 AC 284 ms
16,844 KB
testcase_30 AC 181 ms
13,240 KB
testcase_31 AC 101 ms
9,728 KB
testcase_32 AC 174 ms
13,144 KB
testcase_33 AC 157 ms
12,032 KB
testcase_34 AC 41 ms
6,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i, s, e) for (int i = (int)s; i < (int)e; ++i)
#define all(a) (a).begin(),(a).end()

int main() {
    cin.tie(nullptr);
    
    int N;
    cin >> N;
    
    vector<vector<int>> G(N, vector<int>());
    rep(i, 0, N - 1) {
        int u, v;
        cin >> u >> v;
        u--, v--;
        G[u].push_back(v);
        G[v].push_back(u);
    }
    
    rep(i, 0, N) {
        int ans = 0;
        for (int next : G[i]) ans += G[next].size() - 1;
        
        cout << ans << '\n';
    }
}
0