結果

問題 No.1103 Directed Length Sum
ユーザー DriceDrice
提出日時 2020-07-03 22:28:10
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 663 bytes
コンパイル時間 399 ms
コンパイル使用メモリ 48,768 KB
実行使用メモリ 147,780 KB
最終ジャッジ日時 2024-09-17 04:06:49
合計ジャッジ時間 7,469 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
30,584 KB
testcase_01 AC 12 ms
29,652 KB
testcase_02 WA -
testcase_03 AC 191 ms
42,076 KB
testcase_04 AC 370 ms
45,208 KB
testcase_05 AC 682 ms
54,020 KB
testcase_06 AC 234 ms
40,192 KB
testcase_07 AC 47 ms
31,488 KB
testcase_08 AC 74 ms
34,208 KB
testcase_09 AC 33 ms
30,376 KB
testcase_10 AC 111 ms
35,240 KB
testcase_11 AC 409 ms
46,060 KB
testcase_12 AC 235 ms
40,056 KB
testcase_13 AC 115 ms
35,152 KB
testcase_14 AC 27 ms
32,824 KB
testcase_15 AC 175 ms
40,816 KB
testcase_16 AC 470 ms
49,436 KB
testcase_17 AC 487 ms
49,844 KB
testcase_18 AC 105 ms
35,180 KB
testcase_19 AC 415 ms
46,184 KB
testcase_20 AC 37 ms
30,784 KB
testcase_21 AC 63 ms
31,964 KB
testcase_22 AC 341 ms
44,548 KB
testcase_23 AC 192 ms
37,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<cstdio>
#include<vector>
std::vector<int>g[1000005];
int in[1000005];
long long son[1000005];
const long long mod = 1e9+7;
long long ans = 0;

void dfs(long long d,int u){
    son[u] = 1;
    for(int i = 0; i < (int)g[u].size(); i++){
        int v = g[u][i];
        dfs(d+1,v);
        son[u] += son[v];
        ans += d*son[v];
        if(ans>=mod) ans -= mod;
    }
}

int main(){
    int n;
    scanf("%d",&n);
    for(int i = 0; i < n-1; i++){
        int u,v;
        scanf("%d%d",&u,&v);
        g[u].push_back(v);
        in[v]++;
    }
    ans = 0;
    for(int i = 1; i <= n; i++) if(!in[i]) dfs(1,i);
    printf("%lld\n",ans);
    return 0;
}
0