Hidden Bipartite Graph

题意翻译

### 题目描述 **这是一道交互题。** 给定一个连通图(不包括自环和重边),你可以询问一个点集 $s$,系统会返回在 $s$ 中有两个端点的边的数量。你最多可以询问 $20000$ 次。 你需要判断这个图是不是一个二分图。 ### 输入格式 输入一个数 $n$ ( $1\le n\le 600$ ),表示连通图的点数。 ### 输出格式 首先,读入一个数 $n$,表示连通图的点数。 对于询问,输出两行。第一行输出 “? k” ( $1\le k\le n$ ),$k$ 表示点集的大小。第二行输出 $k$ 个不同的整数 $s_1,s_2,\dots,s_k$ ( $1\le s_i \le n$ ),表示点集。 每次询问后会读入一个数字 $m$ ( $0\le m\le \frac{n(n-1)}{2}$ ),表示在点集 $\{s\}$ 中有两个端点的边的数量。 你最多可以询问 $20000$ 次。 如果 $m=-1$,说明你询问的次数过多,或者询问是无效的。这时,程序应当立刻终止(比如说直接输出 `exit(0)`)。如果这样做,评测将会返回 `Wrong Answer` ,否则将会返回其他结果。 当你知道答案后,你需要输出结果。输出的形式取决于这个图是不是二分图。 如果是,输出两行。第一行输出一个字符 `Y` 和一个数字 $s$ ( $0\le s\le n$ ),$s$ 表示二分图左部/右部的大小。第二行则输出 $s$ 个不同整数 $a_1,a_2,\dots,a_s$ ( $1\le a_i\le n$ ),表示二分图的左部/右部。 如果不是,输出两行。第一行输出一个字符 `N` 和一个奇数 $s$ ( $3\le s \le n$ )。第二行则输出 $s$ 个不同整数 $a_0,a_1,\dots,a_{s-1}$ ( $1\le a_i\le n$ ) ,必须保证对于任意 $i$,$a_i$ 与 $a_{(i+1)\bmod s}$ 之间有一条边。 如果有多种答案,你只需要输出其中一种。

题目描述

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 \leq n \leq 600 $ ) — the number of vertices in Bob's graph.

输出格式


First, read an integer $ n $ ( $ 1\leq n\leq 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 \leq k \leq n $ ), where $ k $ is the size of the set to be queried. The second line should contain $ k $ space separated distinct integers $ s_1, s_2, \dots, s_k $ ( $ 1 \leq s_i \leq n $ ) — the vertices of the queried set. After each query read a single integer $ m $ ( $ 0 \leq m \leq \frac{n(n-1)}{2} $ ) — the number of edges between the vertices of the set $ \{s_i\} $ . 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 \leq s \leq n $ ) — the number of vertices in one of the partitions. Second line should contain $ s $ integers $ a_1, a_2, \dots, a_s $ — vertices belonging to the first partition. All $ a_i $ must be distinct, and all edges in the main graph must have exactly one endpoint in the set $ \{a_i\} $ . 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 \leq l \leq n $ ) — the length of one simple cycle of odd length. Second line should contain $ l $ integers $ c_1, c_2, \dots, c_l $ — the vertices along the cycle. It must hold that for all $ 1 \leq i \leq l $ , there is an edge $ \{c_i, c_{(i \mod l)+1}\} $ in the main graph, and all $ c_i $ 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 \leq n \leq 600, 0 \leq m \leq \frac{n(n-1)}{2}) $ — the number of vertices and edges of the graph, respectively. Each of the next $ m $ lines contains two integers $ u_i $ and $ v_i~(1 \leq u_i, v_i \leq n) $ mean that there is an edge between $ u_i $ and $ v_i $ . 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.