結果

問題 No.806 木を道に
ユーザー kotatsugamekotatsugame
提出日時 2019-04-20 00:38:13
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 84 ms / 2,000 ms
コード長 484 bytes
コンパイル時間 719 ms
コンパイル使用メモリ 72,104 KB
実行使用メモリ 14,116 KB
最終ジャッジ日時 2024-09-24 08:58:40
合計ジャッジ時間 3,294 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,816 KB
testcase_01 AC 3 ms
6,940 KB
testcase_02 AC 4 ms
6,940 KB
testcase_03 AC 3 ms
6,940 KB
testcase_04 AC 4 ms
6,940 KB
testcase_05 AC 3 ms
6,944 KB
testcase_06 AC 4 ms
6,940 KB
testcase_07 AC 3 ms
6,940 KB
testcase_08 AC 4 ms
6,940 KB
testcase_09 AC 4 ms
6,940 KB
testcase_10 AC 20 ms
7,296 KB
testcase_11 AC 18 ms
7,168 KB
testcase_12 AC 73 ms
9,216 KB
testcase_13 AC 52 ms
8,576 KB
testcase_14 AC 65 ms
8,992 KB
testcase_15 AC 71 ms
9,344 KB
testcase_16 AC 26 ms
7,552 KB
testcase_17 AC 58 ms
8,952 KB
testcase_18 AC 8 ms
6,944 KB
testcase_19 AC 19 ms
7,280 KB
testcase_20 AC 59 ms
8,940 KB
testcase_21 AC 34 ms
7,936 KB
testcase_22 AC 81 ms
9,624 KB
testcase_23 AC 84 ms
9,728 KB
testcase_24 AC 42 ms
11,520 KB
testcase_25 AC 61 ms
14,116 KB
testcase_26 AC 21 ms
7,552 KB
testcase_27 AC 66 ms
9,684 KB
testcase_28 AC 6 ms
6,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:17:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   17 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>
using namespace std;
int N;
vector<int>G[1<<17];
int dfs(int u,int p)
{
	int ret=G[u].size()>2?G[u].size()-2:0;
	for(int i=0;i<G[u].size();i++)
	{
		if(G[u][i]==p)continue;
		ret+=dfs(G[u][i],u);
	}
	return ret;
}
main()
{
	cin>>N;
	for(int i=1;i<N;i++)
	{
		int a,b;cin>>a>>b;
		G[a-1].push_back(b-1);
		G[b-1].push_back(a-1);
	}
	for(int i=0;i<N;i++)
	{
		if(G[i].size()>1)
		{
			cout<<dfs(i,-1)<<endl;
			return 0;
		}
	}
}
0