結果

問題 No.1103 Directed Length Sum
ユーザー kappybarkappybar
提出日時 2020-07-03 22:21:29
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,198 ms / 3,000 ms
コード長 950 bytes
コンパイル時間 1,671 ms
コンパイル使用メモリ 173,412 KB
実行使用メモリ 124,308 KB
最終ジャッジ日時 2024-09-17 03:13:29
合計ジャッジ時間 12,404 ms
ジャッジサーバーID
(参考情報)
judge6 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
26,620 KB
testcase_01 AC 10 ms
26,800 KB
testcase_02 AC 714 ms
124,308 KB
testcase_03 AC 510 ms
65,828 KB
testcase_04 AC 658 ms
47,032 KB
testcase_05 AC 1,198 ms
62,004 KB
testcase_06 AC 404 ms
39,952 KB
testcase_07 AC 78 ms
29,812 KB
testcase_08 AC 117 ms
31,484 KB
testcase_09 AC 53 ms
28,688 KB
testcase_10 AC 176 ms
33,288 KB
testcase_11 AC 751 ms
48,868 KB
testcase_12 AC 415 ms
40,008 KB
testcase_13 AC 184 ms
33,560 KB
testcase_14 AC 44 ms
28,268 KB
testcase_15 AC 324 ms
37,104 KB
testcase_16 AC 850 ms
51,684 KB
testcase_17 AC 862 ms
52,764 KB
testcase_18 AC 174 ms
33,244 KB
testcase_19 AC 759 ms
49,408 KB
testcase_20 AC 61 ms
29,100 KB
testcase_21 AC 107 ms
31,128 KB
testcase_22 AC 588 ms
45,272 KB
testcase_23 AC 310 ms
37,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i=0;i<(int)(n);i++)
using namespace std;
using ll = long long ;
using P = pair<int,int> ;
using pll = pair<long long,long long>;
constexpr int INF = 1e9;
constexpr long long LINF = 1e17;
constexpr int MOD = 1000000007;
constexpr double PI = 3.14159265358979323846;
ll n = 1000005;
vector<vector<int>> tree(n,vector<int>());
ll ans = 0;

ll dfs(int i,ll depth=1,int before=-1){
    ll res = 0;

    for(int c:tree[i]){
        if(c==before) continue;
        ll p = dfs(c,depth+1,i);
        ans = (ans + (depth*p)%MOD)%MOD;
        res += p;
    }

    return res+1;
}

int main(){
    cin >> n;
    vector<int> cnt(n);
    rep(i,n-1){
        int a,b;
        cin >> a >> b;
        --a;--b;
        tree[a].push_back(b);
        tree[b].push_back(a);
        cnt[b] ++;
    }
    int id = -1;
    rep(i,n){
        if(cnt[i]==0) id = i;
    }

    dfs(id);
    cout << ans << endl;

    return 0;
}
0