結果

問題 No.768 Tapris and Noel play the game on Treeone
ユーザー ahe100ahe100
提出日時 2019-01-10 06:52:42
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 240 ms / 2,000 ms
コード長 1,609 bytes
コンパイル時間 559 ms
コンパイル使用メモリ 76,924 KB
実行使用メモリ 18,256 KB
最終ジャッジ日時 2024-05-03 03:59:29
合計ジャッジ時間 4,447 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
7,960 KB
testcase_01 AC 3 ms
8,136 KB
testcase_02 AC 3 ms
8,264 KB
testcase_03 AC 4 ms
8,640 KB
testcase_04 AC 4 ms
8,772 KB
testcase_05 AC 4 ms
8,256 KB
testcase_06 AC 3 ms
8,516 KB
testcase_07 AC 85 ms
13,860 KB
testcase_08 AC 43 ms
11,200 KB
testcase_09 AC 51 ms
11,588 KB
testcase_10 AC 42 ms
10,820 KB
testcase_11 AC 160 ms
16,836 KB
testcase_12 AC 155 ms
16,964 KB
testcase_13 AC 147 ms
16,680 KB
testcase_14 AC 147 ms
16,584 KB
testcase_15 AC 153 ms
17,224 KB
testcase_16 AC 153 ms
17,092 KB
testcase_17 AC 160 ms
17,476 KB
testcase_18 AC 203 ms
18,256 KB
testcase_19 AC 219 ms
17,324 KB
testcase_20 AC 240 ms
17,576 KB
testcase_21 AC 221 ms
17,096 KB
20evil_special_uni1.txt AC 298 ms
17,436 KB
20evil_special_uni2.txt AC 258 ms
16,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<cstdio>
#include<cstring>
#include<vector>
#include<queue>
#include<stack>
#include<algorithm>
#include<cmath>
#include<climits>
#include<string>
#include<set>
#include<numeric>
#include<map>
#include<iostream>
using namespace std;
#define rep(i,n) for(int i = 0;i<((int)(n));i++)
#define reg(i,a,b) for(int i = ((int)(a));i<=((int)(b));i++)
#define irep(i,n) for(int i = ((int)(n)-1);i>=0;i--)
#define ireg(i,a,b) for(int i = ((int)(b));i>=((int)(a));i--)
typedef long long ll;
typedef pair<ll, ll> mp;
ll mod = 1e9+7;
//LLONG_MIN

/*
グラフに必敗に繋がる辺の数をメモしておくと計算量短縮
grundyは0か非0かだけが意味を持つ
相手に0を押し付ければ勝てる
*/

ll n,lose[100010]={},visit[100010]={};
vector<ll> v[100010],grundy[100010],ans;

ll dfs(ll par,ll p,ll edge_id){
	if(par!=-1){
		if(lose[p]>=2)return 1;//1手で0に行けるので
	}else{
		if(lose[p]>=1){
			return 1;//1手で0に行けるので
		}else if(visit[p]==v[p].size())return 0;
	}
	ll lose_num=0;
	rep(i,v[p].size()){
		if(v[p][i]==par)continue;
		if(grundy[p][i]==-1){
			grundy[p][i]=dfs(p,v[p][i],i);
			if(grundy[p][i]==0)lose[p]++;
			visit[p]++;
		}
		if(grundy[p][i]==0)lose_num=1;
	}
	return lose_num;
}

int main(void){
	cin>>n;
	rep(i,n-1){
		ll a,b;
		cin>>a>>b;
		v[a].push_back(b);
		v[b].push_back(a);
		grundy[a].push_back(-1);
		grundy[b].push_back(-1);
	}
	reg(i,1,n){
		if(dfs(-1,i,0)==0)ans.push_back(i);//最初においた場所が、相手がどう置こうが必敗になる場所
	}
	cout<<ans.size()<<endl;
	rep(i,ans.size())cout<<ans[i]<<endl;
	return 0;
}
0