A12324 | Construct a tree
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
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 $p_i$ , and $i$ is called a child of vertex $p_i$ . Vertex $u$ belongs to the subtree of vertex $v$ iff $v$ is reachable from $u$ while iterating over the parents ( $u$ , $p_{u}$ , $p_{p_{u}}$ , ...). 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.
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 $p_i$ , and $i$ is called a child of vertex $p_i$ . Vertex $u$ belongs to the subtree of vertex $v$ iff $v$ is reachable from $u$ while iterating over the parents ( $u$ , $p_{u}$ , $p_{p_{u}}$ , ...). 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 \le n \le 10^5$ ; $1 \le s \le 10^{10}$ ).
输出格式
If the required tree does not exist, output «No». Otherwise output «Yes» on the first line, and in the next one output integers $p_2$ , $p_3$ , ..., $p_n$ , where $p_i$ 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$ .

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$ .

C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted