結果

問題 No.1103 Directed Length Sum
ユーザー DriceDrice
提出日時 2020-07-03 22:34:04
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 648 ms / 3,000 ms
コード長 667 bytes
コンパイル時間 398 ms
コンパイル使用メモリ 49,024 KB
実行使用メモリ 147,584 KB
最終ジャッジ日時 2024-09-17 04:14:53
合計ジャッジ時間 7,065 ms
ジャッジサーバーID
(参考情報)
judge6 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
30,408 KB
testcase_01 AC 12 ms
29,260 KB
testcase_02 AC 354 ms
147,584 KB
testcase_03 AC 183 ms
42,076 KB
testcase_04 AC 354 ms
45,304 KB
testcase_05 AC 648 ms
53,992 KB
testcase_06 AC 212 ms
42,080 KB
testcase_07 AC 42 ms
31,272 KB
testcase_08 AC 62 ms
32,084 KB
testcase_09 AC 32 ms
31,576 KB
testcase_10 AC 104 ms
35,200 KB
testcase_11 AC 383 ms
48,136 KB
testcase_12 AC 219 ms
40,108 KB
testcase_13 AC 100 ms
35,024 KB
testcase_14 AC 26 ms
31,580 KB
testcase_15 AC 173 ms
36,948 KB
testcase_16 AC 439 ms
49,400 KB
testcase_17 AC 482 ms
49,816 KB
testcase_18 AC 106 ms
35,000 KB
testcase_19 AC 414 ms
46,376 KB
testcase_20 AC 35 ms
32,168 KB
testcase_21 AC 66 ms
31,584 KB
testcase_22 AC 331 ms
44,584 KB
testcase_23 AC 188 ms
36,992 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]%mod;
        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