#P3557. [POI2013] GRA-Tower Defense Game

[POI2013] GRA-Tower Defense Game

题目描述

Bytie is playing the computer game Tower Defense.

His aim is to construct guard towers, so that they protect all of his domain.

There are multiple towns in Bytie's domain, some of which are linked by bidirectional roads.

If Bytie erects a guard tower in a city, then the tower protects its city and all the cities directly linked with it by roads.

Just as Bytie was pondering over the placement of guard towers in his domain, his elder sister Bytea entered the room. She glanced at the map displayed on the screen, and after a moment exclaimed:

"Oi, what is there to think about, clearly kk towers suffice!".

Angered by his sister spoiling the fun, Bytie showed his sister the door, and began wondering what to do next.

Pride will not let him construct more than kk towers.

He has an up his sleeve though:

he can research a technology that will allow him to construct improved guard towers.

An improved guard tower protects not only the town it was erected in and its immediate neighbors but also the towns that are further away.

Formally, an improved guard tower built in the town uu protects the town vv if either of the following holds:

  • u=vu=v;

  • there is a direct road from uu to vv;

  • or there is such a town ww that there are direct roads from uu to ww and from ww to vv.

Of course, Bytie still strives to erect at most kk towers, but he has no qualms about making these the improved guard towers.

有一个n个点m条边的图,每条边距离是1,已知用k个攻击距离为1的塔可以打到整个地图,让构造一个方案使得用小于等于k个攻击距离为2的塔打到整个地图

输入格式

In the first line of the standard input, there are three integers, nn, mm, and kk (2n500 0002\le n\le 500\ 000, 0m1 000 0000\le m\le 1\ 000\ 000, 1kn1\le k\le n), separated by single spaces, that specify, respectively, the number of towns and roads in Bytie's domain, and the number kk given by Bytea.

The towns in Bytie's domain are numbered from 1 to nn.

Next,mm lines describing the roads follow.

Each of those lines holds two integers, aia_i and bib_i (1ai,bin1\le a_i,b_i\le n,aibia_i\ne b_i), indicating that the towns no. aia_i and bib_i are directly linked by a bidirectional road. Each pair of towns is linked by at most a single road.

输出格式

Your program is to print two lines, describing the placement of improved guard towers in Bytie's domain, to the standard output.

The first line is to hold an integer rr (1rk1\le r\le k), the number of improved guard towers that Bytie should construct.

The second line is to specify the placement of these by providing rr pairwise disjoint integers that are the numbers of town where the improved guard towers are to be built.

The town numbers can be given in an arbitrary order.

If more than one solution exists, any solution can be printed.

Let us remind that any placement of no more than kk improved towers will do - you need not minimize their number.

You may assume that Bytea was correct, i.e., that the whole domain of Bytie can indeed be protected by kk plain (not improved) guard towers. Thus a solution always exists.

9 8 3
1 2
2 3
3 4
1 4
3 5
4 6
7 8
8 9
3
1 5 7 

提示

有一个n个点m条边的图,每条边距离是1,已知用k个攻击距离为1的塔可以打到整个地图,让构造一个方案使得用小于等于k个攻击距离为2的塔打到整个地图