結果

問題 No.1103 Directed Length Sum
ユーザー face4face4
提出日時 2020-07-21 14:00:55
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 584 ms / 3,000 ms
コード長 911 bytes
コンパイル時間 886 ms
コンパイル使用メモリ 71,936 KB
実行使用メモリ 132,096 KB
最終ジャッジ日時 2024-12-29 12:32:11
合計ジャッジ時間 9,344 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
26,880 KB
testcase_01 AC 11 ms
26,752 KB
testcase_02 AC 359 ms
132,096 KB
testcase_03 AC 188 ms
42,560 KB
testcase_04 AC 304 ms
42,240 KB
testcase_05 AC 584 ms
53,864 KB
testcase_06 AC 165 ms
36,752 KB
testcase_07 AC 43 ms
29,084 KB
testcase_08 AC 59 ms
30,388 KB
testcase_09 AC 29 ms
28,160 KB
testcase_10 AC 78 ms
31,824 KB
testcase_11 AC 314 ms
43,776 KB
testcase_12 AC 164 ms
36,992 KB
testcase_13 AC 83 ms
32,000 KB
testcase_14 AC 23 ms
27,648 KB
testcase_15 AC 124 ms
34,560 KB
testcase_16 AC 373 ms
45,908 KB
testcase_17 AC 376 ms
46,708 KB
testcase_18 AC 83 ms
31,744 KB
testcase_19 AC 320 ms
44,212 KB
testcase_20 AC 33 ms
28,416 KB
testcase_21 AC 54 ms
29,952 KB
testcase_22 AC 257 ms
40,960 KB
testcase_23 AC 131 ms
35,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
using namespace std;

vector<int> v[1000001];
vector<int> ans, des, indeg;

void dfs(int p, int x){
    ans[x] = ans[p]+1;
    des[x] = 1;
    for(int child : v[x]){
        dfs(x, child);
        des[x] += des[child];
    }
}

typedef long long ll;

int main(){
    cin.tie(0);
    ios::sync_with_stdio(false);
    int n;
    cin >> n;
    ans.resize(n+1, 0);
    des.resize(n+1, 0);
    indeg.resize(n+1, 0);
    for(int i = 0; i < n-1; i++){
        int a, b;
        cin >> a >> b;
        v[a].push_back(b);
        indeg[b]++;
    }
    for(int i = 1; i <= n; i++){
        if(indeg[i])    continue;
        dfs(0, i);
        break;
    }
    ll ret = 0;
    const ll mod = 1000000007;
    for(int i = 1; i <= n; i++){
        for(int j : v[i]){
            ret += (ll)ans[i]*des[j]%mod;
            ret %= mod;
        }
    }
    cout << ret << endl;
    return 0;
}
0