結果

問題 No.1103 Directed Length Sum
ユーザー karinohitokarinohito
提出日時 2024-09-13 23:28:36
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 725 bytes
コンパイル時間 2,320 ms
コンパイル使用メモリ 206,744 KB
実行使用メモリ 143,872 KB
最終ジャッジ日時 2024-09-13 23:28:47
合計ジャッジ時間 11,006 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 WA -
testcase_03 AC 184 ms
38,644 KB
testcase_04 AC 325 ms
29,948 KB
testcase_05 AC 604 ms
49,536 KB
testcase_06 AC 199 ms
20,464 KB
testcase_07 AC 31 ms
7,424 KB
testcase_08 AC 51 ms
9,600 KB
testcase_09 AC 19 ms
5,888 KB
testcase_10 AC 83 ms
11,812 KB
testcase_11 AC 383 ms
32,284 KB
testcase_12 AC 199 ms
20,864 KB
testcase_13 AC 83 ms
12,268 KB
testcase_14 AC 15 ms
5,376 KB
testcase_15 AC 143 ms
16,768 KB
testcase_16 AC 413 ms
35,996 KB
testcase_17 AC 437 ms
37,472 KB
testcase_18 AC 79 ms
11,904 KB
testcase_19 AC 396 ms
33,024 KB
testcase_20 AC 24 ms
6,400 KB
testcase_21 AC 47 ms
8,960 KB
testcase_22 AC 293 ms
27,648 KB
testcase_23 AC 160 ms
17,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

vector<int> 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