CF1146C.Tree Diameter
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
There is a weighted tree with n nodes and n−1 edges. The nodes are conveniently labeled from 1 to n . The weights are positive integers at most 100 . Define the distance between two nodes to be the sum of edges on the unique path between the nodes. You would like to find the diameter of the tree. Diameter is the maximum distance between a pair of nodes.
Unfortunately, the tree isn't given to you, but you can ask some questions about it. In one question, you can specify two nonempty disjoint sets of nodes p and q , and the judge will return the maximum distance between a node in p and a node in q . In the words, maximum distance between x and y , where x∈p and y∈q . After asking not more than 9 questions, you must report the maximum distance between any pair of nodes.
输入格式
无
输出格式
Each test contains multiple test cases. The first line contains the number of test cases t ( 1≤t≤1000 ). Description of the test cases follows.
The first line of each test case contains an integer n ( 2≤n≤100 ) — the number of nodes in the tree.
To ask a question, print " k1 k2 a1 a2 … ak1 b1 b2 … bk2 " (k1,k2≥1 and k1+k2≤n ). These two sets must be nonempty and disjoint. The judge will respond with a single integer maxp,qdist(ap,bq) . If you ever get a result of −1 (because you printed an invalid query), exit immediately to avoid getting other verdicts.
After printing a query do not forget to output 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 are ready to answer, print " −1 d ", where d is the maximum shortest distance over all pairs of nodes.
You can only ask at most 9 questions per test case.
Hack Format
To hack, use the following format. Note that you can only hack with one test case.
The first line should contain a single integer t ( t=1 ).
The second line should contain a single integer n ( 2≤n≤100 ).
Each of the next n−1 lines should contain three integers ai,bi,ci ( 1≤ai,bi≤n , 1≤ci≤100 ). This denotes an undirected edge between nodes ai and bi with weight ci . These edges must form a tree.
输入输出样例
输入#1
2 5 9 6 10 9 10 2 99
输出#1
1 4 1 2 3 4 5 1 4 2 3 4 5 1 1 4 3 4 5 1 2 1 4 4 5 1 2 3 1 4 5 1 2 3 4 -1 10 1 1 1 2 -1 99
说明/提示
In the first example, the first tree looks as follows:
In the first question, we have p=1 , and q=2,3,4,5 . The maximum distance between a node in p and a node in q is 9 (the distance between nodes 1 and 5 ).
The second tree is a tree with two nodes with an edge with weight 99 between them.