#ABC151E. Max-Min Sums
Max-Min Sums
题目描述
For a finite set of integers , let .
Given are integers .
We will choose of them and let be the set of the integers chosen. If we distinguish elements with different indices even when their values are the same, there are ways to make this choice. Find the sum of over all those ways.
Since the answer can be enormous, print it .
对于有限整数集 ,让 .
给出 个整数 .
我们将选择其中的 ,并让 成为所选整数的集合。如果我们区分不同指数的元素,即使它们的值相同,也有 种方法进行选择。求所有这些方法的总和 。
由于答案可能很大,请打印出 。
输入格式
输入内容按以下格式标准输入:
输出格式
打印答案 。
样例 #1
样例输入 #1
4 2
1 1 3 4
样例输出 #1
11
样例 #2
样例输入 #2
6 3
10 10 10 -10 -10 -10
样例输出 #2
360
样例 #3
样例输入 #3
3 1
1 1 1
样例输出 #3
0
样例 #4
样例输入 #4
10 6
1000000000 1000000000 1000000000 1000000000 1000000000 0 0 0 0 0
样例输出 #4
999998537
说明
数据规模与约定
样例 解释
选择 的方法有六种: (我们将两个 区分开来)。这些选择的 值分别为 ,合计为 。
样例 解释
有 种方法可以选择 。在其中的 中,有 ;在其中的 中,有 。
样例 解释
打印总和 。