CF1098C.Construct a tree
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Misha walked through the snowy forest and he was so fascinated by the trees to decide to draw his own tree!
Misha would like to construct a rooted tree with n vertices, indexed from 1 to n , where the root has index 1. Every other vertex has a parent pi , and i is called a child of vertex pi . Vertex u belongs to the subtree of vertex v iff v is reachable from u while iterating over the parents ( u , pu , ppu , ...). Clearly, v belongs to its own subtree, and the number of vertices in the subtree is called the size of the subtree. Misha is only interested in trees where every vertex belongs to the subtree of vertex 1 .
Below there is a tree with 6 vertices. The subtree of vertex 2 contains vertices 2 , 3 , 4 , 5 . Hence the size of its subtree is 4 .
The branching coefficient of the tree is defined as the maximum number of children in any vertex. For example, for the tree above the branching coefficient equals 2 . Your task is to construct a tree with n vertices such that the sum of the subtree sizes for all vertices equals s , and the branching coefficient is minimum possible.
输入格式
The only input line contains two integers n and s — the number of vertices in the tree and the desired sum of the subtree sizes ( 2≤n≤105 ; 1≤s≤1010 ).
输出格式
If the required tree does not exist, output «No». Otherwise output «Yes» on the first line, and in the next one output integers p2 , p3 , ..., pn , where pi denotes the parent of vertex i .
输入输出样例
输入#1
3 5
输出#1
Yes 1 1
输入#2
4 42
输出#2
No
输入#3
6 15
输出#3
Yes 1 2 3 1 5
说明/提示
Below one can find one of the possible solutions for the first sample case. The sum of subtree sizes equals 3+1+1=5 , and the branching coefficient equals 2 .
Below one can find one of the possible solutions for the third sample case. The sum of subtree sizes equals 6+3+2+1+2+1=15 , and the branching coefficient equals 2 .