結果

問題 No.768 Tapris and Noel play the game on Treeone
ユーザー kriiikriii
提出日時 2018-12-16 00:35:40
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 53 ms / 2,000 ms
コード長 740 bytes
コンパイル時間 563 ms
コンパイル使用メモリ 49,664 KB
実行使用メモリ 10,232 KB
最終ジャッジ日時 2024-09-25 06:19:38
合計ジャッジ時間 2,484 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,760 KB
testcase_01 AC 3 ms
5,504 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 3 ms
5,504 KB
testcase_04 AC 3 ms
5,760 KB
testcase_05 AC 3 ms
5,760 KB
testcase_06 AC 2 ms
5,760 KB
testcase_07 AC 33 ms
8,192 KB
testcase_08 AC 17 ms
6,784 KB
testcase_09 AC 20 ms
7,168 KB
testcase_10 AC 17 ms
6,912 KB
testcase_11 AC 52 ms
9,432 KB
testcase_12 AC 51 ms
9,528 KB
testcase_13 AC 47 ms
9,424 KB
testcase_14 AC 47 ms
9,308 KB
testcase_15 AC 51 ms
9,512 KB
testcase_16 AC 52 ms
9,532 KB
testcase_17 AC 53 ms
9,612 KB
testcase_18 AC 46 ms
10,232 KB
testcase_19 AC 45 ms
10,176 KB
testcase_20 AC 46 ms
10,112 KB
testcase_21 AC 42 ms
9,664 KB
20evil_special_uni1.txt AC 48 ms
9,724 KB
20evil_special_uni2.txt AC 46 ms
9,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

vector<int> G[100100];
int N,D[100100],V[100100];

void go(int x, int l)
{
	D[x] = 1;
	for (int y : G[x]) if (y != l){
		go(y,x);
		if (D[y] > 0) D[x] -= D[y];
	}
}

void go2(int x, int l)
{
	for (int y : G[x]) if (y != l){
		int v = D[x];
		if (D[y] > 0) v += D[y];
		if (V[x] > 0) v -= V[x];
		V[y] = v;
		go2(y,x);
	}
}

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);
	}

	go(1,0);
	go2(1,0);
	vector<int> ans;
	for (int i=1;i<=N;i++){
		int v = D[i];
		if (V[i] > 0) v -= V[i];
		if (v > 0) ans.push_back(i);
	}
	printf ("%d\n",ans.size());
	for (auto x : ans) printf ("%d\n",x);

	return 0;
}
0