結果

問題 No.1103 Directed Length Sum
ユーザー kotatsugamekotatsugame
提出日時 2020-07-03 21:54:50
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 478 bytes
コンパイル時間 547 ms
コンパイル使用メモリ 71,864 KB
実行使用メモリ 125,960 KB
最終ジャッジ日時 2024-09-17 00:37:01
合計ジャッジ時間 9,258 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
28,612 KB
testcase_01 AC 8 ms
29,892 KB
testcase_02 WA -
testcase_03 AC 436 ms
35,796 KB
testcase_04 AC 453 ms
40,512 KB
testcase_05 AC 890 ms
47,488 KB
testcase_06 AC 293 ms
35,456 KB
testcase_07 AC 65 ms
29,824 KB
testcase_08 AC 97 ms
30,720 KB
testcase_09 AC 43 ms
29,184 KB
testcase_10 AC 132 ms
31,744 KB
testcase_11 AC 497 ms
40,192 KB
testcase_12 AC 278 ms
35,456 KB
testcase_13 AC 134 ms
31,872 KB
testcase_14 AC 35 ms
29,056 KB
testcase_15 AC 209 ms
33,920 KB
testcase_16 AC 576 ms
41,856 KB
testcase_17 AC 637 ms
42,624 KB
testcase_18 AC 131 ms
31,808 KB
testcase_19 AC 526 ms
40,704 KB
testcase_20 AC 52 ms
29,440 KB
testcase_21 AC 88 ms
30,464 KB
testcase_22 AC 421 ms
38,400 KB
testcase_23 AC 230 ms
34,176 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:21:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   21 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<vector>
using namespace std;
int N;
vector<int>G[1<<20];
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;
	}
	ans+=c+t;
	return make_pair(c+1,c+t);
}
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