码迷,mamicode.com
首页 > 其他好文 > 详细

Codeforces Round #216 (Div. 2)---C. Valera and Elections

时间:2015-04-07 13:57:10      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:dfs

The city Valera lives in is going to hold elections to the city Parliament.

The city has n districts and n?-?1 bidirectional roads. We know that from any district there is a path along the roads to any other district. Let’s enumerate all districts in some way by integers from 1 to n, inclusive. Furthermore, for each road the residents decided if it is the problem road or not. A problem road is a road that needs to be repaired.

There are n candidates running the elections. Let’s enumerate all candidates in some way by integers from 1 to n, inclusive. If the candidate number i will be elected in the city Parliament, he will perform exactly one promise — to repair all problem roads on the way from the i-th district to the district 1, where the city Parliament is located.

Help Valera and determine the subset of candidates such that if all candidates from the subset will be elected to the city Parliament, all problem roads in the city will be repaired. If there are several such subsets, you should choose the subset consisting of the minimum number of candidates.
Input

The first line contains a single integer n (2?≤?n?≤?105) — the number of districts in the city.

Then n?-?1 lines follow. Each line contains the description of a city road as three positive integers xi, yi, ti (1?≤?xi,?yi?≤?n, 1?≤?ti?≤?2) — the districts connected by the i-th bidirectional road and the road type. If ti equals to one, then the i-th road isn’t the problem road; if ti equals to two, then the i-th road is the problem road.

It’s guaranteed that the graph structure of the city is a tree.
Output

In the first line print a single non-negative number k — the minimum size of the required subset of candidates. Then on the second line print k space-separated integers a1,?a2,?… ak — the numbers of the candidates that form the required subset. If there are multiple solutions, you are allowed to print any of them.
Sample test(s)
Input

5
1 2 2
2 3 2
3 4 2
4 5 2

Output

1
5

Input

5
1 2 1
2 3 2
2 4 1
4 5 1

Output

1
3

Input

5
1 2 2
1 3 2
1 4 2
1 5 2

Output

4
5 4 3 2

dfs一遍即可,对节点进行标记

/*************************************************************************
    > File Name: CF-216-C.cpp
    > Author: ALex
    > Mail: zchao1995@gmail.com 
    > Created Time: 2015年04月07日 星期二 11时15分05秒
 ************************************************************************/

#include <functional>
#include <algorithm>
#include <iostream>
#include <fstream>
#include <cstring>
#include <cstdio>
#include <cmath>
#include <cstdlib>
#include <queue>
#include <stack>
#include <map>
#include <bitset>
#include <set>
#include <vector>

using namespace std;

const double pi = acos(-1.0);
const int inf = 0x3f3f3f3f;
const double eps = 1e-15;
typedef long long LL;
typedef pair <int, int> PLL;

const int N = 100100;
vector <PLL> edge[N];
vector <int> ans;
bool got[N];

void dfs(int u, int fa)
{
    int size = edge[u].size();
    for (int i = 0; i < size; ++i)
    {
        int v = edge[u][i].first;
        int flag = edge[u][i].second;
        if (v == fa)
        {
            continue;
        }
        dfs(v, u);
        if (flag == 2)
        {
            if (!got[v])
            {
                ans.push_back(v);
                got[v] = 1;
            }
        }
        got[u] = got[u] || got[v];
    }
}

int main()
{
    int n;
    while (~scanf("%d", &n))
    {
        memset(got, 0, sizeof(got));
        for (int i = 1; i <= n; ++i)
        {
            edge[i].clear();
        }
        int u, v, flag;
        for (int i = 1; i <= n - 1; ++i)
        {
            scanf("%d%d%d", &u, &v, &flag);
            edge[u].push_back(make_pair(v, flag));
            edge[v].push_back(make_pair(u, flag));
        }
        ans.clear();
        dfs(1, -1);
        int size = ans.size();
        printf("%d\n", size);
        for (int i = 0; i < size; ++i)
        {
            printf("%d", ans[i]);
            if (i < size - 1)
            {
                printf(" ");
            }
            else
            {
                printf("\n");
            }
        }
    }
    return 0;
}

Codeforces Round #216 (Div. 2)---C. Valera and Elections

标签:dfs

原文地址:http://blog.csdn.net/guard_mine/article/details/44918557

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!