結果

問題 No.1103 Directed Length Sum
ユーザー face4face4
提出日時 2020-07-21 14:00:55
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 557 ms / 3,000 ms
コード長 911 bytes
コンパイル時間 804 ms
コンパイル使用メモリ 71,940 KB
実行使用メモリ 131,976 KB
最終ジャッジ日時 2024-06-09 08:21:53
合計ジャッジ時間 7,972 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
26,744 KB
testcase_01 AC 8 ms
26,808 KB
testcase_02 AC 350 ms
131,976 KB
testcase_03 AC 186 ms
43,204 KB
testcase_04 AC 275 ms
42,324 KB
testcase_05 AC 557 ms
53,780 KB
testcase_06 AC 149 ms
36,860 KB
testcase_07 AC 37 ms
29,088 KB
testcase_08 AC 54 ms
30,404 KB
testcase_09 AC 25 ms
28,252 KB
testcase_10 AC 71 ms
31,860 KB
testcase_11 AC 285 ms
43,812 KB
testcase_12 AC 152 ms
36,948 KB
testcase_13 AC 74 ms
31,968 KB
testcase_14 AC 22 ms
27,736 KB
testcase_15 AC 115 ms
34,688 KB
testcase_16 AC 352 ms
45,928 KB
testcase_17 AC 357 ms
46,744 KB
testcase_18 AC 71 ms
31,616 KB
testcase_19 AC 301 ms
44,284 KB
testcase_20 AC 30 ms
28,508 KB
testcase_21 AC 48 ms
30,076 KB
testcase_22 AC 231 ms
41,000 KB
testcase_23 AC 120 ms
35,224 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