結果

問題 No.2427 Tree Distance Two
ユーザー 👑 獅子座じゃない人獅子座じゃない人
提出日時 2023-08-18 21:22:19
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 684 ms / 2,000 ms
コード長 552 bytes
コンパイル時間 1,686 ms
コンパイル使用メモリ 173,892 KB
実行使用メモリ 26,496 KB
最終ジャッジ日時 2024-05-06 03:10:36
合計ジャッジ時間 14,531 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 684 ms
24,704 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 676 ms
24,576 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 641 ms
25,456 KB
testcase_08 AC 653 ms
26,496 KB
testcase_09 AC 648 ms
25,696 KB
testcase_10 AC 650 ms
25,984 KB
testcase_11 AC 654 ms
25,364 KB
testcase_12 AC 650 ms
25,308 KB
testcase_13 AC 656 ms
24,996 KB
testcase_14 AC 605 ms
24,448 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 18 ms
5,376 KB
testcase_21 AC 21 ms
5,376 KB
testcase_22 AC 7 ms
5,376 KB
testcase_23 AC 4 ms
5,376 KB
testcase_24 AC 17 ms
5,376 KB
testcase_25 AC 167 ms
8,832 KB
testcase_26 AC 416 ms
16,532 KB
testcase_27 AC 287 ms
12,800 KB
testcase_28 AC 679 ms
23,168 KB
testcase_29 AC 584 ms
20,608 KB
testcase_30 AC 418 ms
16,128 KB
testcase_31 AC 270 ms
11,648 KB
testcase_32 AC 405 ms
16,000 KB
testcase_33 AC 354 ms
14,464 KB
testcase_34 AC 105 ms
6,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main(void) {
    int n;
    cin >> n;
    vector<int> u(n-1);
    vector<int> v(n-1);
    vector<vector<int>> g(n);
    for(int i=0;i<n-1;++i){
        cin >> u[i] >> v[i];
        --u[i];
        --v[i];
        g[u[i]].emplace_back(v[i]);
        g[v[i]].emplace_back(u[i]);
    }
    vector<long long> ans(n);
    for(int i=0;i<n-1;++i){
        ans[u[i]]+=g[v[i]].size()-1;
        ans[v[i]]+=g[u[i]].size()-1;
    }
    for(int i=0;i<n;++i){
        cout << ans[i] << endl;
    }
    return 0;
}
0