CF1721F.Matching Reduction
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
You are given a bipartite graph with n1 vertices in the first part, n2 vertices in the second part, and m edges. The maximum matching in this graph is the maximum possible (by size) subset of edges of this graph such that no vertex is incident to more than one chosen edge.
You have to process two types of queries to this graph:
- 1 — remove the minimum possible number of vertices from this graph so that the size of the maximum matching gets reduced exactly by 1 , and print the vertices that you have removed. Then, find any maximum matching in this graph and print the sum of indices of edges belonging to this matching;
- 2 — query of this type will be asked only after a query of type 1 . As the answer to this query, you have to print the edges forming the maximum matching you have chosen in the previous query.
Note that you should solve the problem in online mode. It means that you can't read the whole input at once. You can read each query only after writing the answer for the last query. Use functions fflush in C++ and BufferedWriter.flush in Java languages after each writing in your program.
输入格式
The first line contains four integers n1 , n2 , m and q ( 1≤n1,n2≤2⋅105 ; 1≤m≤min(n1⋅n2,2⋅105) ; 1≤q≤2⋅105 ).
Then m lines follow. The i -th of them contains two integers xi and yi ( 1≤xi≤n1 ; 1≤yi≤n2 ) meaning that the i -th edge connects the vertex xi in the first part and the vertex yi in the second part. There are no pairs of vertices that are connected by more than one edge.
Then q lines follow. The i -th of them contains one integer, 1 or 2 , denoting the i -th query. Additional constraints on queries:
- the number of queries of type 1 won't exceed the size of the maximum matching in the initial graph;
- the number of queries of type 2 won't exceed 3 ;
- each query of type 2 is preceded by a query of type 1 ;
- your solution is allowed to read the i -th query only after printing the answer for the (i−1) -th query and flushing the output.
输出格式
For a query of type 1 , print the answer in three lines as follows:
- the first line should contain the number of vertices you remove;
- the second line should contain the indices of vertices you remove, as follows: if you remove the vertex x from the left part, print x ; if you remove the vertex y from the right part, print −y (negative index);
- the third line should contain the sum of indices of edges in some maximum matching in the resulting graph. The edges are numbered from 1 to m .
For a query of type 2 , print the answer in two lines as follows:
- the first line should contain the size of the maximum matching;
- the second line should contain the indices of the edges belonging to the maximum matching. Note that the sum of these indices should be equal to the number you printed at the end of the previous query of type 1 ;
After printing the answer to a query, don't forget to flush the output.
输入输出样例
输入#1
3 4 4 4 2 2 1 3 2 1 3 4 1 2 1 2
输出#1
1 -4 3 === 2 1 2 === 1 2 2 === 1 2
说明/提示
In this problem, you may receive the verdict "Idleness Limit Exceeded" since it is in online mode. If it happens, it means that either the output format is wrong, or you don't meet some constraint of the problem. You may treat this verdict as "Wrong Answer".
For your convenience, the output for queries in the example is separated by the line ===. Don't print this line in your program, it is done only to make sure that it's easy to distinguish between answers for different queries in the statement.