1409. Two parties

单点时限: 2.0 sec

内存限制: 256 MB

King Byteasar has decided to throw two great parties and wants to invite to them every single Byteotian inhabitant. Of course he wants to invite each of them to exactly one of the parties. The king knows from his own vast experience that a person is having a good time when there is an even number of her/his friends at the party. Thus he has asked you to divide the country’s inhabitants between two parties in a way that as many people as possible have an even number of friends at their party. A trivial division, i.e. one that leaves one party with no guests invited, is allowed. The acquaintanceship is a symmetric relation, i.e. whenever a person A knows the person B, the person B also knows the person A.

Task

Write a programme that:

reads from the standard input the number of Byteotia’s inhabitants and the description of their acquaintances,

splits the habitants into two parties in such way that the number of people who have an even number of friends at their party is as large as possible,

writes to the standard output a list of people who should be invited to the first party.

输入格式

In the first line of the standard input there is one integer N ( 1 <= N <= 200) – it is the number of inhabitants of Byteotia. The habitants are numbered from 1 to N. In the following N lines there are the descriptions of subsequent persons’ acquaintances. At the beginning of the (i + 1)th line there is an integer li ( 0 <= li <= N - 1) – the number of friends of the ith inhabitant. It is followed by li pairwise distinct numbers of the ith inhabitant’s friends. We assume that no inhabitant is her/his own friend. It follows that each acquaintance is written twice: if A and B know each other, then B appears on A’s list of friends and A appears on B’s.

输出格式

In the first line of the standard output your programme should write one integer M – the number of people who are to come to the first party. In the second line the M numbers of these people should be written. The rest shall come to the second party.

There are many correct divisions in this task – your programme should write any one of them.

Example

In the above example everyone will have even number of friends at the party.

样例

Input
5
3 2 3 4
2 1 3
4 2 1 4 5
2 1 3
1 3
Output
3
1 2 3

0 人解决,2 人已尝试。

0 份提交通过,共有 4 份提交。

9.9 EMB 奖励。

创建: 16 年,8 月前.

修改: 6 年,7 月前.

最后提交: 3 年,4 月前.

来源: POI

题目标签