結果

問題 No.1103 Directed Length Sum
ユーザー chocoruskchocorusk
提出日時 2020-07-03 21:38:19
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,086 ms / 3,000 ms
コード長 1,324 bytes
コンパイル時間 1,874 ms
コンパイル使用メモリ 129,528 KB
実行使用メモリ 147,840 KB
最終ジャッジ日時 2024-09-16 23:21:30
合計ジャッジ時間 12,245 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
26,880 KB
testcase_01 AC 11 ms
26,880 KB
testcase_02 AC 772 ms
147,840 KB
testcase_03 AC 498 ms
42,468 KB
testcase_04 AC 599 ms
42,624 KB
testcase_05 AC 1,086 ms
54,144 KB
testcase_06 AC 372 ms
37,120 KB
testcase_07 AC 79 ms
29,440 KB
testcase_08 AC 129 ms
30,848 KB
testcase_09 AC 54 ms
28,416 KB
testcase_10 AC 176 ms
32,128 KB
testcase_11 AC 664 ms
44,032 KB
testcase_12 AC 376 ms
37,120 KB
testcase_13 AC 185 ms
32,128 KB
testcase_14 AC 42 ms
28,032 KB
testcase_15 AC 292 ms
35,072 KB
testcase_16 AC 749 ms
46,208 KB
testcase_17 AC 788 ms
46,976 KB
testcase_18 AC 183 ms
32,000 KB
testcase_19 AC 728 ms
44,288 KB
testcase_20 AC 65 ms
28,800 KB
testcase_21 AC 119 ms
30,208 KB
testcase_22 AC 545 ms
41,088 KB
testcase_23 AC 314 ms
35,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
#include <fstream>
#include <utility>
#include <functional>
#include <time.h>
#include <stack>
#include <array>
#define popcount __builtin_popcount
using namespace std;
typedef long long int ll;
typedef pair<int, int> P;
const ll MOD=1e9+7;
ll powmod(ll a, ll k){
    ll ap=a, ans=1;
    while(k){
        if(k&1){
            ans*=ap;
            ans%=MOD;
        }
        ap=ap*ap;
        ap%=MOD;
        k>>=1;
    }
    return ans;
}
ll inv(ll a){
    return powmod(a, MOD-2);
}
vector<int> g[1000010];
int deg[1000010];
int d[1000010], cnt[1000010];
ll ans;
void dfs(int x, int p){
    cnt[x]=1;
    for(auto y:g[x]){
        d[y]=d[x]+1;
        dfs(y, x);
        cnt[x]+=cnt[y];
        (ans+=(ll)(d[x]+1)*cnt[y])%=MOD;
    }
}
int main()
{
	int n; cin>>n;
    for(int i=0; i<n-1; i++){
        int a, b; cin>>a>>b;
        a--; b--;
        g[a].push_back(b);
        deg[b]++;
    }
    int r=0;
    for(int i=0; i<n; i++) if(deg[i]==0) r=i;
    dfs(r, -1);
    cout<<ans<<endl;
	return 0;
}
0