結果

問題 No.1103 Directed Length Sum
ユーザー kotatsugamekotatsugame
提出日時 2020-07-03 21:57:25
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 911 ms / 3,000 ms
コード長 527 bytes
コンパイル時間 695 ms
コンパイル使用メモリ 72,088 KB
実行使用メモリ 125,988 KB
最終ジャッジ日時 2024-09-17 00:43:42
合計ジャッジ時間 9,712 ms
ジャッジサーバーID
(参考情報)
judge6 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
28,480 KB
testcase_01 AC 10 ms
28,228 KB
testcase_02 AC 701 ms
125,988 KB
testcase_03 AC 442 ms
36,560 KB
testcase_04 AC 480 ms
41,068 KB
testcase_05 AC 911 ms
47,932 KB
testcase_06 AC 295 ms
38,024 KB
testcase_07 AC 68 ms
33,576 KB
testcase_08 AC 100 ms
30,920 KB
testcase_09 AC 43 ms
30,148 KB
testcase_10 AC 138 ms
31,812 KB
testcase_11 AC 553 ms
42,072 KB
testcase_12 AC 334 ms
35,652 KB
testcase_13 AC 153 ms
32,580 KB
testcase_14 AC 37 ms
29,252 KB
testcase_15 AC 238 ms
34,116 KB
testcase_16 AC 657 ms
43,232 KB
testcase_17 AC 680 ms
43,832 KB
testcase_18 AC 143 ms
32,452 KB
testcase_19 AC 538 ms
42,320 KB
testcase_20 AC 55 ms
30,536 KB
testcase_21 AC 97 ms
30,788 KB
testcase_22 AC 432 ms
40,412 KB
testcase_23 AC 236 ms
34,496 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:24:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   24 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<vector>
using namespace std;
int N;
vector<int>G[1<<20];
const long mod=1e9+7;
long ans;
pair<int,long>dfs(int u,int p)
{
	int c=0;
	long t=0;
	for(int v:G[u])if(v!=p)
	{
		pair<int,long>q=dfs(v,u);
		c+=q.first;
		t+=q.second;
		t%=mod;
	}
	ans+=c+t;
	ans%=mod;
	return make_pair(c+1,(c+t)%mod);
}
int deg[1<<20];
main()
{
	cin>>N;
	for(int i=1;i<N;i++)
	{
		int u,v;cin>>u>>v;
		u--,v--;
		G[u].push_back(v);
		deg[v]++;
	}
	int root=0;
	while(deg[root])root++;
	dfs(root,-1);
	cout<<ans<<endl;
}
0