#P7946. 「Wdcfr-1」Yet Another Cirno Game (hard version)
「Wdcfr-1」Yet Another Cirno Game (hard version)
题目描述
The only difference between the two versions is whether you have to find a way to get the maximum points.
Cirno drew a graph. This graph consists of nodes, which are numbered through . Also:
- For and , node and node are connected.
- For and , node and node are connected.
Cirno called Daiyousei to come and play with her.
The rules for this game are as follows:
- Firstly, Cirno chooses (i.e. half) of the nodes, and she colors them blue. The rest are left red.
- Then there are turns: for each turn Cirno first chooses a blue node, and Daiyousei chooses a red node. If those two nodes are connected, Daiyousei gets a point.
Try to maximize the number of points Daiyousei gets.
输入格式
In the first line, is provided.
In the second line, numbers follow: they are the nodes that Cirno chose.
输出格式
In the first line output , which is the maximum number of points Daiyousei can get.
Then output integers. For each node that Cirno chooses, output the corresponding node that Daiyousei responds with. Obviously the order of the chosen nodes doesn't matter. The solution must get the maximum number of points possible.
3
0 1 2 3 4 5
6
6 7 8 9 10 11
提示
Explanation
In the following picture, nodes in matrices are connected to each other. Cirno chose nodes .
Arrows below show a possible way for Daiyousei to get the maximum number of points she can get.

Constraints
.