日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

codeforce 1311E. Construct the Binary Tree (构造,就是个模拟)

發布時間:2023/12/15 编程问答 34 豆豆
生活随笔 收集整理的這篇文章主要介紹了 codeforce 1311E. Construct the Binary Tree (构造,就是个模拟) 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

ACM思維題訓練集合
You are given two integers n and d. You need to construct a rooted binary tree consisting of n vertices with a root at the vertex 1 and the sum of depths of all vertices equals to d.

A tree is a connected graph without cycles. A rooted tree has a special vertex called the root. A parent of a vertex v is the last different from v vertex on the path from the root to the vertex v. The depth of the vertex v is the length of the path from the root to the vertex v. Children of vertex v are all vertices for which v is the parent. The binary tree is such a tree that no vertex has more than 2 children.

You have to answer t independent test cases.

Input
The first line of the input contains one integer t (1≤t≤1000) — the number of test cases.

The only line of each test case contains two integers n and d (2≤n,d≤5000) — the number of vertices in the tree and the required sum of depths of all vertices.

It is guaranteed that the sum of n and the sum of d both does not exceed 5000 (∑n≤5000,∑d≤5000).

Output
For each test case, print the answer.

If it is impossible to construct such a tree, print “NO” (without quotes) in the first line. Otherwise, print “{YES}” in the first line. Then print n?1 integers p2,p3,…,pn in the second line, where pi is the parent of the vertex i. Note that the sequence of parents you print should describe some binary tree.

Example
inputCopy
3
5 7
10 19
10 18
outputCopy
YES
1 2 1 3
YES
1 2 3 3 9 9 2 1 6
NO
Note
Pictures corresponding to the first and the second test cases of the example:


丫的,改了一天。
如果b在構造的樹的深度最大(左偏或右偏樹)和最小(滿二叉樹)之內就能構成,然后從左偏樹開始不斷的將低端的點向上移動,知道達到要求。

#include <bits/stdc++.h> using namespace std; int f[210]; inline void solve() {memset(f, 0, sizeof(f));int n, d, maxd = 0;scanf("%d %d", &n, &d);--n;if (d > n * (n + 1) / 2){printf("NO\n");return;} //1for (int i = 1;; ++i){maxd = i;if (n > (1 << i)){d -= i * (1 << i);f[i] = 1 << i;n -= 1 << i;}else{d -= i * n;f[i] = n;n -= n;break;}}if (d < 0){printf("NO\n");return;}while (1){if (d == 0)break;int p;for (p = maxd; p >= 1; --p)if (f[p] > 1)break;--d;--f[p];++f[p + 1];if (p + 1 > maxd)maxd = p + 1;}printf("YES\n");int p = 1, np = 1, cnt;for (int i = 1; i <= maxd; ++i){int t = p;cnt = 0;for (int j = 1; j <= f[i]; ++j){++p;++cnt;if (cnt >= 3){++np;cnt = 1;} printf("%d ", np);}np = t + 1;}printf("\n"); } int main() {int t;scanf("%d", &t);for (int i = 1; i <= t; ++i)solve();return 0; } 創作挑戰賽新人創作獎勵來咯,堅持創作打卡瓜分現金大獎

總結

以上是生活随笔為你收集整理的codeforce 1311E. Construct the Binary Tree (构造,就是个模拟)的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。