博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HDU 6092 Rikka with Subset(递推)
阅读量:5238 次
发布时间:2019-06-14

本文共 1857 字,大约阅读时间需要 6 分钟。

Rikka with Subset

Problem Description

As we know, Rikka is poor at math. Yuta is worrying about this situation, so he gives Rikka some math tasks to practice. There is one of them:

Yuta has n positive A1−An and their sum is m. Then for each subset S of A, Yuta calculates the sum of S.

Now, Yuta has got 2n numbers between [0,m]. For each i∈[0,m], he counts the number of is he got as Bi.

Yuta shows Rikka the array Bi and he wants Rikka to restore A1−An.

It is too difficult for Rikka. Can you help her?

Input

The first line contains a number t(1≤t≤70), the number of the testcases.

For each testcase, the first line contains two numbers n,m(1≤n≤50,1≤m≤104).

The second line contains m+1 numbers B0−Bm(0≤Bi≤2n).

Output

For each testcase, print a single line with n numbers A1−An.

It is guaranteed that there exists at least one solution. And if there are different solutions, print the lexicographic minimum one.

Sample Input

2
2 3
1 1 1 1
3 3
1 3 3 1

Sample Output

1 2
1 1 1
Hint
In the first sample, A is [1,2]. A has four subsets [],[1],[2],[1,2] and the sums of each subset are 0,1,2,3. So B=[1,1,1,1]

题意:

给定数组b,保存的数组a中的所有子集和的个数,让找个这个数组a,并且按照字典序输出来。

分析:

a数组里面除了第一个元素a[0]肯定为1之外(表示空集的个数有且仅有一个),其余的第一次出现的a[i]==j(j!=0),那么就表示i这个数字肯定在a数组中存在,而且为第一个并且为最小的元素,同时将这个数的个数减减(相当于减去单独自己本身一个自己的情况),记录下标i。

这样循环的往后加a数组的元素下标偏移i个单位,如果此时两个数的个数均不为0,也就意味这后面的那个数,可以由前面这个数构成,然后让当前下标的数减去a[i],得到的那个数减去a[i]的个数,(相当于减去这个数可以由a[i]组合而成的个数)剩下的肯定就是这个数字本身的个数

就这样循环着往下找

#include
#include
#include
#include
using namespace std;int a[1100002];int b[1100002];int main(){ int t; scanf("%d",&t); while(t--) { int n,m; scanf("%d%d",&n,&m); for(int i=0;i<=m;i++) scanf("%d",&a[i]); a[0]=0; for(int i=0;i

转载于:https://www.cnblogs.com/nanfenggu/p/7900064.html

你可能感兴趣的文章
C快速排序算法
查看>>
C# MVC中直接执行Js
查看>>
poj 2761 主席树的应用(查询区间第k小值)
查看>>
The Heaviest Non-decreasing Subsequence Problem
查看>>
delphi
查看>>
MySQL Workbench “Error Code: 1175” 的解决方法
查看>>
修改状态栏的颜色
查看>>
01.深入学习方法
查看>>
线程的2种实现方式
查看>>
Web渗透测试(xss漏洞)
查看>>
AFNetwork 作用和用法详解
查看>>
JSON简介
查看>>
HDOJ 1465 不容易系列之一 【错排公式 递推】
查看>>
html4
查看>>
javascript中,单引号是转义字符,就是让编辑器认为他后面的东西就是这个意思。...
查看>>
一次SSM项目记录
查看>>
算法与数据结构基础(一)排序基础1.选择排序
查看>>
【Leetcode_easy】832. Flipping an Image
查看>>
Codeforces712B【= =】
查看>>
[POI2008]砖块Klo
查看>>