CF1583E.Moment of Bloom
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
She does her utmost to flawlessly carry out a person's last rites and preserve the world's balance of yin and yang.
Hu Tao, being the little prankster she is, has tried to scare you with this graph problem! You are given a connected undirected graph of n nodes with m edges. You also have q queries. Each query consists of two nodes a and b .
Initially, all edges in the graph have a weight of 0 . For each query, you must choose a simple path starting from a and ending at b . Then you add 1 to every edge along this path. Determine if it's possible, after processing all q queries, for all edges in this graph to have an even weight. If so, output the choice of paths for each query.
If it is not possible, determine the smallest number of extra queries you could add to make it possible. It can be shown that this number will not exceed 1018 under the given constraints.
A simple path is defined as any path that does not visit a node more than once.
An edge is said to have an even weight if its value is divisible by 2 .
输入格式
The first line contains two integers n and m ( 2≤n≤3⋅105 , n−1≤m≤min(2n(n−1),3⋅105) ).
Each of the next m lines contains two integers x and y ( 1≤x,y≤n , x=y ) indicating an undirected edge between node x and y . The input will not contain self-loops or duplicate edges, and the provided graph will be connected.
The next line contains a single integer q ( 1≤q≤3⋅105 ).
Each of the next q lines contains two integers a and b ( 1≤a,b≤n,a=b ), the description of each query.
It is guaranteed that nq≤3⋅105 .
输出格式
If it is possible to force all edge weights to be even, print "YES" on the first line, followed by 2q lines indicating the choice of path for each query in the same order the queries are given. For each query, the first line should contain a single integer x : the number of nodes in the chosen path. The next line should then contain x spaced separated integers pi indicating the path you take ( p1=a,px=b and all numbers should fall between 1 and n ). This path cannot contain duplicate nodes and must be a valid simple path in the graph.
If it is impossible to force all edge weights to be even, print "NO" on the first line and the minimum number of added queries on the second line.
输入输出样例
输入#1
6 7 2 1 2 3 3 5 1 4 6 1 5 6 4 5 3 1 4 5 1 4 5
输出#1
YES 2 1 4 4 5 3 2 1 5 4 1 2 3 5
输入#2
5 7 4 3 4 5 2 1 1 4 1 3 3 5 3 2 4 4 2 3 5 5 1 4 5
输出#2
NO 2
说明/提示
Here is what the queries look like for the first test case (red corresponds to the 1st query, blue 2nd query, and green 3rd query):
Notice that every edge in the graph is part of either 0 or 2 colored query edges.The graph in the second test case looks like this:
There does not exist an assignment of paths that will force all edges to have even weights with the given queries. One must add at least 2 new queries to obtain a set of queries that can satisfy the condition.