結果

問題 No.2427 Tree Distance Two
ユーザー 0214sh70214sh7
提出日時 2023-08-17 23:31:35
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 644 ms / 2,000 ms
コード長 641 bytes
コンパイル時間 1,874 ms
コンパイル使用メモリ 204,984 KB
実行使用メモリ 26,464 KB
最終ジャッジ日時 2024-11-27 00:47:07
合計ジャッジ時間 15,218 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 644 ms
23,936 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 628 ms
23,792 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 581 ms
24,316 KB
testcase_08 AC 609 ms
26,464 KB
testcase_09 AC 572 ms
24,320 KB
testcase_10 AC 602 ms
24,912 KB
testcase_11 AC 592 ms
24,080 KB
testcase_12 AC 604 ms
23,952 KB
testcase_13 AC 616 ms
23,964 KB
testcase_14 AC 549 ms
22,016 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 17 ms
5,248 KB
testcase_21 AC 18 ms
5,248 KB
testcase_22 AC 6 ms
5,248 KB
testcase_23 AC 4 ms
5,248 KB
testcase_24 AC 15 ms
5,248 KB
testcase_25 AC 152 ms
8,576 KB
testcase_26 AC 373 ms
16,128 KB
testcase_27 AC 255 ms
12,408 KB
testcase_28 AC 611 ms
22,272 KB
testcase_29 AC 512 ms
19,968 KB
testcase_30 AC 364 ms
15,616 KB
testcase_31 AC 236 ms
11,284 KB
testcase_32 AC 388 ms
15,488 KB
testcase_33 AC 305 ms
14,080 KB
testcase_34 AC 95 ms
6,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
const long long MOD = 998244353;
const long long INF = (1ll<<61)-1;

int main(void){
    //cin.tie(nullptr);
    //ios::sync_with_stdio(false);
    
    long long N;
    cin >> N;
    vector<vector<long long>> G(N);
    for(int i=0;i<N-1;i++){
        long long u,v;
        cin >> u >> v;
        u--;v--;
        G[u].push_back(v);
        G[v].push_back(u);
    }

    vector<long long> Ans(N,0);

    for(int i=0;i<N;i++){
        for(long long e:G[i]){
            Ans[e] += -1+G[i].size();
        }
    }

    for(int i=0;i<N;i++){
        cout << Ans[i] << endl;
    }


    return 0;
}
0