結果

問題 No.1103 Directed Length Sum
ユーザー HaaHaa
提出日時 2020-07-03 22:31:27
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 911 ms / 3,000 ms
コード長 711 bytes
コンパイル時間 1,594 ms
コンパイル使用メモリ 174,972 KB
実行使用メモリ 107,576 KB
最終ジャッジ日時 2024-09-17 04:10:12
合計ジャッジ時間 11,236 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 13 ms
29,376 KB
testcase_01 AC 13 ms
29,456 KB
testcase_02 AC 676 ms
107,576 KB
testcase_03 AC 466 ms
38,448 KB
testcase_04 AC 503 ms
40,008 KB
testcase_05 AC 911 ms
47,780 KB
testcase_06 AC 317 ms
36,180 KB
testcase_07 AC 73 ms
30,980 KB
testcase_08 AC 105 ms
31,920 KB
testcase_09 AC 49 ms
30,416 KB
testcase_10 AC 146 ms
32,844 KB
testcase_11 AC 562 ms
40,896 KB
testcase_12 AC 318 ms
36,284 KB
testcase_13 AC 155 ms
32,972 KB
testcase_14 AC 42 ms
30,164 KB
testcase_15 AC 248 ms
34,716 KB
testcase_16 AC 690 ms
42,304 KB
testcase_17 AC 669 ms
42,988 KB
testcase_18 AC 140 ms
32,824 KB
testcase_19 AC 538 ms
41,128 KB
testcase_20 AC 55 ms
30,612 KB
testcase_21 AC 94 ms
31,672 KB
testcase_22 AC 455 ms
39,016 KB
testcase_23 AC 260 ms
35,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long int ll;
typedef pair<ll, ll> P;
typedef vector<ll> VI;
typedef vector<VI> VVI;
const ll MOD = 1000000007;
const ll INF = 1e18;
#define REP(i, n) for (int i = 0; i < n; i++)
#define ALL(v) v.begin(), v.end()

VVI edge(1114514,VI(0));
ll ans=0;

P dfs(int v){
	ll sum=0, esum=0;
	for(auto to:edge[v]){
		P x=dfs(to);
		esum=(esum+x.second)%MOD;
		sum=(sum+x.first+x.second)%MOD;
	}
	ans=(ans+sum)%MOD;
	return  {sum,esum+1};
}

int main(){
	int n; cin >> n;
	int a, b;
	vector<bool> root(n,1);
	REP(i,n-1){
		cin >> a >> b;
		a--; b--;
		root[b]=0;
		edge[a].push_back(b);
	}
	REP(i,n){
		if(root[i])
			dfs(i);
	}
	cout << ans << endl;
	return 0;
}
0