The Hidden Pair (Easy Version)

题意翻译

**这是一道交互题。困难版与简单版唯一的区别是交互次数限制。** **本题有多组数据。** 已知一棵 $n$ 个顶点的树(边集已知),其中有两个不同的顶点被暗中做了标记。你现在需要通过若干次询问,猜出两个被标记顶点的编号。 一次询问的格式为 ` ? c x_1 x_2 ... x_c `,即代表你向交互库请求关于 $x_1,x_2,\cdots,x_c$ 这 $c$ 个点的信息。 对于一次询问,交互库的返回格式为 ` x d `,表示在询问的集合中,到两个被标记点的距离之和最小的点是 $x$,这个最小值为 $d$。如果有多个最小值点,$x$ 的值可能是其中任意一个。 如果已经知晓答案,请用 ` ! x y ` 的格式来输出你的答案,任意顺序均可。在这之后,你会收到一个字符串 ` Correct ` 或者 ` Incorrect `,代表你的猜测是否正确。如果收到了 ` Incorrect `,请立即终止程序,否则请继续处理下一组数据。 对于每组数据,请你在不超过 $14$ 次询问之内给出答案。 $1\le t\le 10, 2\le n\le 1000$。 _Translated by Caro23333_

题目描述

Note that the only difference between the easy and hard version is the constraint on the number of queries. You can make hacks only if all versions of the problem are solved. This is an interactive problem. You are given a tree consisting of $ n $ nodes numbered with integers from $ 1 $ to $ n $ . Ayush and Ashish chose two secret distinct nodes in the tree. You need to find out both the nodes. You can make the following query: - Provide a list of nodes and you will receive a node from that list whose sum of distances to both the hidden nodes is minimal (if there are multiple such nodes in the list, you will receive any one of them). You will also get the sum of distances of that node to the hidden nodes. Recall that a tree is a connected graph without cycles. The distance between two nodes is defined as the number of edges in the simple path between them. More formally, let's define two hidden nodes as $ s $ and $ f $ . In one query you can provide the set of nodes $ \{a_1, a_2, \ldots, a_c\} $ of the tree. As a result, you will get two numbers $ a_i $ and $ dist(a_i, s) + dist(a_i, f) $ . The node $ a_i $ is any node from the provided set, for which the number $ dist(a_i, s) + dist(a_i, f) $ is minimal. You can ask no more than $ 14 $ queries.

输入输出格式

输入格式


The first line contains a single integer $ t $ $ (1 \leq t \leq 10) $ — the number of test cases. Please note, how the interaction process is organized. The first line of each test case consists of a single integer $ n $ $ (2 \le n \le 1000) $ — the number of nodes in the tree. The next $ n - 1 $ lines consist of two integers $ u $ , $ v $ $ (1 \le u, v \le n, u \ne v) $ — the edges of the tree.

输出格式


To ask a query print a single line: - In the beginning print "? c " (without quotes) where $ c $ $ (1 \leq c \leq n) $ denotes the number of nodes being queried, followed by $ c $ distinct integers in the range $ [1, n] $ — the indices of nodes from the list. For each query, you will receive two integers $ x $ , $ d $ — the node (among the queried nodes) with the minimum sum of distances to the hidden nodes and the sum of distances from that node to the hidden nodes. If the subset of nodes queried is invalid or you exceeded the number of queries then you will get $ x = d = -1 $ . In this case, you should terminate the program immediately. When you have guessed the hidden nodes, print a single line "! " (without quotes), followed by two integers in the range $ [1, n] $ — the hidden nodes. You can output the hidden nodes in any order. After this, you should read a string. If you guess the nodes correctly, you will receive the string "Correct". In this case, you should continue solving the remaining test cases or terminate the program, if all test cases were solved. Otherwise, you will receive the string "Incorrect". In this case, you should terminate the program immediately. Guessing the hidden nodes does not count towards the number of queries asked. The interactor is not adaptive. The hidden nodes do not change with queries. Do not forget to read the string "Correct" / "Incorrect" after guessing the hidden nodes. You need to solve each test case before receiving the input for the next test case. The limit of $ 14 $ queries applies to each test case and not to the entire input. After printing a query do not forget to output the end of the 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 the documentation for other languages. Hacks To hack the solution, use the following test format: The first line should contain a single integer $ t $ $ (1 \leq t \leq 10) $ — the number of test cases. The description of the test cases follows. The first line of each test case should contain a single integer $ n $ $ (2 \le n \le 1000) $ — the number of nodes in the tree. The second line should contain two distinct integers in the range $ [1, n] $ — the hidden nodes. The next $ n - 1 $ lines should contain two integers $ u $ , $ v $ $ (1 \le u, v \le n, u \ne v) $ — the edges of the tree.

输入输出样例

输入样例 #1

1
3
1 2
1 3

1 1

2 3

3 1

3 1

Correct

输出样例 #1

? 1 1

? 1 2

? 1 3

? 2 2 3

! 1 3

说明

The tree from the first test is shown below, and the hidden nodes are $ 1 $ and $ 3 $ . ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF1370F1/deea4b0040e770b1c1e50ebf95e24ae594eea667.png)