luogu#P10595. Xavier is Learning to Count
Xavier is Learning to Count
题目描述
Xavier, a 9-year-old student, loves playing many kinds of puzzles. One of his favourites is the following:
Xerier, his classmate, has made many cards. She writes down a single positive number on each of them. No numbers written on different cards are the same. After that she writes down an equation, whose right side is a single positive number chosen by her, and the left side is the sum of integers:
Then she asks Xavier put cards on the corresponding ’s position to make this equation correct, with an additional condition that should be ordered from smaller to bigger, i.e.
Every time Xavier immediately comes up with many solutions. Now he wants to know how many solutions in total are there for any given by Xerier.
输入格式
There are multiple test cases. The number of them is given in the beginning of the input. Then a series of input block comes one by one.
For each test case:
The first line contains two space-separated integers and . The second line contains distinct positive integers - the numbers written on each of the cards. None of these integers exceeds .
There are about test cases in total, but of them are relatively small. More precisely, all numbers are less than or equal to in of the test cases.
输出格式
For each test case:
For each positive integer, output the number of ways in a single line. To keep the output finite, only numbers with positive ways should be outputted.
Output a blank line after each test case. See sample for more format details.
题目大意
集合 内有 个互异整数。请对于任意整数 求出 内满足大小为 且元素和为 的子集数量。
输入格式: 组测试数据。对于每组数据,第一行输入整数 ,第二行输入 个整数,表示 内的元素。
输出格式:只需输出答案不为 的 及其对应的答案。每组测试数据之间以换行隔开。
3
3 3
1 2 3
5 4
1 3 5 6 7
10 3
1 2 3 4 5 6 7 8 9 10
Case #1:
6: 1
Case #2:
15: 1
16: 1
17: 1
19: 1
21: 1
Case #3:
6: 1
7: 1
8: 2
9: 3
10: 4
11: 5
12: 7
13: 8
14: 9
15: 10
16: 10
17: 10
18: 10
19: 9
20: 8
21: 7
22: 5
23: 4
24: 3
25: 2
26: 1
27: 1