CF1033E.Hidden Bipartite Graph
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Bob has a simple undirected connected graph (without self-loops and multiple edges). He wants to learn whether his graph is bipartite (that is, you can paint all vertices of the graph into two colors so that there is no edge connecting two vertices of the same color) or not. As he is not very good at programming, he asked Alice for help. He does not want to disclose his graph to Alice, but he agreed that Alice can ask him some questions about the graph.
The only question that Alice can ask is the following: she sends s — a subset of vertices of the original graph. Bob answers with the number of edges that have both endpoints in s . Since he doesn't want Alice to learn too much about the graph, he allows her to ask no more than 20000 questions. Furthermore, he suspects that Alice might introduce false messages to their communication channel, so when Alice finally tells him whether the graph is bipartite or not, she also needs to provide a proof — either the partitions themselves or a cycle of odd length.
Your task is to help Alice to construct the queries, find whether the graph is bipartite.
输入格式
The first line contains a single integer n ( 1≤n≤600 ) — the number of vertices in Bob's graph.
输出格式
First, read an integer n ( 1≤n≤600 ) — the number of vertices in Bob's graph.
To make a query, print two lines. First of which should be in the format "? k" ( 1≤k≤n ), where k is the size of the set to be queried. The second line should contain k space separated distinct integers s1,s2,…,sk ( 1≤si≤n ) — the vertices of the queried set.
After each query read a single integer m ( 0≤m≤2n(n−1) ) — the number of edges between the vertices of the set {si} .
You are not allowed to ask more than 20000 queries.
If m=−1 , it means that you asked more queries than allowed, or asked an invalid query. Your program should immediately terminate (for example, by calling exit(0)). You will receive Wrong Answer; it means that you asked more queries than allowed, or asked an invalid query. If you ignore this, you can get other verdicts since your program will continue to read from a closed stream.
After printing a query do not forget to print end of line and flush the output. Otherwise, you will get Idleness limit exceeded. To do this, use:
- fflush(stdout) or cout.flush() in C++;
- System.out.flush() in Java;
- flush(output) in Pascal;
- stdout.flush() in Python;
- see documentation for other languages.
When you know the answer, you need to print it.
The format of the answer depends on whether the graph is bipartite or not.
If the graph is bipartite, print two lines. The first should contain the letter "Y" (short for "YES") followed by a space, and then a single integer s ( 0≤s≤n ) — the number of vertices in one of the partitions. Second line should contain s integers a1,a2,…,as — vertices belonging to the first partition. All ai must be distinct, and all edges in the main graph must have exactly one endpoint in the set {ai} .
If the graph is not bipartite, print two lines. The first should contain the letter "N" (short for "NO") followed by a space, and then a single integer l ( 3≤l≤n ) — the length of one simple cycle of odd length. Second line should contain l integers c1,c2,…,cl — the vertices along the cycle. It must hold that for all 1≤i≤l , there is an edge {ci,c(imodl)+1} in the main graph, and all ci are distinct.
If there are multiple possible answers, you may print any of them.
Hacks format For hacks, use the following format:
The first line contains two integers n and m (1≤n≤600,0≤m≤2n(n−1)) — the number of vertices and edges of the graph, respectively.
Each of the next m lines contains two integers ui and vi (1≤ui,vi≤n) mean that there is an edge between ui and vi . There must not be any multiple edges, no loops, and the graph must be connected.
For example, you need to use this test to get the first sample:
<br></br>4 4<br></br>4 1<br></br>1 3<br></br>3 2<br></br>2 4<br></br>
输入输出样例
输入#1
4 4 0 1 1 1 0
输出#1
? 4 1 2 3 4 ? 2 1 2 ? 2 1 3 ? 2 1 4 ? 2 2 4 ? 2 3 4 Y 2 1 2
输入#2
4 4 3
输出#2
? 4 1 4 2 3 ? 3 1 2 4 N 3 2 1 4
说明/提示
In the first case, Alice learns that there are 4 edges in the whole graph. Over the course of the next three queries, she learns that vertex 1 has two neighbors: 3 and 4 . She then learns that while vertex 2 is adjacent to 4 , the vertex 3 isn't adjacent to 4 . There is only one option for the remaining edge, and that is (2,3) . This means that the graph is a cycle on four vertices, with (1,2) being one partition and (3,4) being the second. Here, it would be also valid to output "3 4" on the second line.
In the second case, we also have a graph on four vertices and four edges. In the second query, Alice learns that there are three edges among vertices (1,2,4) . The only way this could possibly happen is that those form a triangle. As the triangle is not bipartite, Alice can report it as a proof. Notice that she does not learn where the fourth edge is, but she is able to answer Bob correctly anyway.