結果

問題 No.1103 Directed Length Sum
ユーザー karinohitokarinohito
提出日時 2024-09-13 23:31:39
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 597 ms / 3,000 ms
コード長 724 bytes
コンパイル時間 2,347 ms
コンパイル使用メモリ 209,508 KB
実行使用メモリ 151,764 KB
最終ジャッジ日時 2024-09-13 23:31:49
合計ジャッジ時間 9,571 ms
ジャッジサーバーID
(参考情報)
judge5 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 357 ms
151,764 KB
testcase_03 AC 186 ms
46,448 KB
testcase_04 AC 324 ms
34,304 KB
testcase_05 AC 597 ms
57,140 KB
testcase_06 AC 189 ms
23,428 KB
testcase_07 AC 32 ms
7,936 KB
testcase_08 AC 52 ms
10,624 KB
testcase_09 AC 20 ms
6,144 KB
testcase_10 AC 81 ms
13,312 KB
testcase_11 AC 382 ms
37,112 KB
testcase_12 AC 191 ms
23,572 KB
testcase_13 AC 82 ms
13,696 KB
testcase_14 AC 16 ms
6,940 KB
testcase_15 AC 142 ms
19,012 KB
testcase_16 AC 394 ms
41,268 KB
testcase_17 AC 441 ms
43,036 KB
testcase_18 AC 77 ms
13,240 KB
testcase_19 AC 355 ms
38,112 KB
testcase_20 AC 25 ms
6,944 KB
testcase_21 AC 47 ms
10,084 KB
testcase_22 AC 287 ms
31,692 KB
testcase_23 AC 156 ms
20,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

vector<ll> C,D;
void dfs(int n,vector<vector<int>> &G){
    C[n]=1;
    for(int v:G[n]){
        D[v]=D[n]+1;
        dfs(v,G);
        C[n]+=C[v];
    }
}

int main() {

    cin.tie(nullptr);
    ios::sync_with_stdio(false);

    int N;
    cin>>N;
    vector<vector<int>> G(N);
    vector<bool> R(N,1);
    for(int i=0;i<N-1;i++){
        int a,b;
        cin>>a>>b;
        a--;b--;
        R[b]=0;
        G[a].push_back(b);
    }
    int r=0;
    for(int i=0;i<N;i++)if(R[i])r=i;
    C.assign(N,0);
    D.assign(N,0);
    dfs(r,G);
    ll an=0;
    ll mod=1e9+7;
    for(int i=0;i<N;i++){
        an+=(D[i]*C[i])%mod;
    }
    cout<<an%mod<<endl;
}
0