結果

問題 No.763 Noelちゃんと木遊び
ユーザー kriiikriii
提出日時 2018-12-11 00:03:43
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 46 ms / 2,000 ms
コード長 533 bytes
コンパイル時間 457 ms
コンパイル使用メモリ 52,916 KB
実行使用メモリ 14,848 KB
最終ジャッジ日時 2024-09-24 17:30:34
合計ジャッジ時間 2,114 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
14,848 KB
testcase_01 AC 18 ms
6,940 KB
testcase_02 AC 35 ms
7,936 KB
testcase_03 AC 24 ms
7,168 KB
testcase_04 AC 18 ms
6,944 KB
testcase_05 AC 23 ms
7,040 KB
testcase_06 AC 46 ms
8,448 KB
testcase_07 AC 45 ms
8,320 KB
testcase_08 AC 27 ms
7,168 KB
testcase_09 AC 17 ms
6,940 KB
testcase_10 AC 9 ms
6,944 KB
testcase_11 AC 45 ms
8,464 KB
testcase_12 AC 39 ms
8,320 KB
testcase_13 AC 38 ms
8,132 KB
testcase_14 AC 35 ms
7,796 KB
testcase_15 AC 23 ms
7,168 KB
testcase_16 AC 7 ms
6,940 KB
testcase_17 AC 25 ms
7,168 KB
testcase_18 AC 44 ms
8,448 KB
testcase_19 AC 36 ms
8,208 KB
testcase_20 AC 40 ms
8,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <algorithm>
#include <vector>
using namespace std;

int N;
vector<int> G[100100];

pair<int, int> go(int x, int l)
{
	pair<int, int> res = {1,0};
	for (auto &y : G[x]) if (y != l){
		auto u = go(y,x);
		res.first += max(u.first-1,u.second);
		res.second += max(u.first,u.second);
	}
	return res;
}

int main()
{
	scanf ("%d",&N);
	for (int i=1;i<N;i++){
		int x,y; scanf ("%d %d",&x,&y);
		G[x].push_back(y);
		G[y].push_back(x);
	}

	auto p = go(1,0);
	printf ("%d\n",max(p.first,p.second));
	return 0;
}
0