#ABC127D. Integer Cards
Integer Cards
题目描述
You have cards. On the -th card, an integer is written.
For each in this order, you will perform the following operation once:
Operation: Choose at most cards (possibly zero). Replace the integer written on each chosen card with .
Find the maximum possible sum of the integers written on the cards after the operations.
你有 张卡片。在第 张卡片上,写着一个整数 。
对于这个顺序中的每一张 ,你都要执行一次下面的操作:
操作:最多选择 张纸牌(可能是零)。用 替换写在每张所选卡片上的整数。
求经过 运算后,写在 纸牌上的整数的最大可能和
输入格式
输入内容按以下格式标准输入:
输出格式
打印经过 次操作后写入 张卡片的整数的最大可能和。
样例 #1
样例输入 #1
3 2
5 1 4
2 3
1 5
样例输出 #1
14
样例 #2
样例输入 #2
10 3
1 8 5 7 100 4 52 33 13 5
3 10
4 30
1 4
样例输出 #2
338
样例 #3
样例输入 #3
3 2
100 100 100
3 99
3 99
样例输出 #3
300
样例 #4
样例输入 #4
11 3
1 1 1 1 1 1 1 1 1 1 1
3 1000000000
4 1000000000
3 1000000000
样例输出 #4
10000000001
说明
数据规模与约定
- 所有输入值均为整数。
样例 解释
将第二张卡片上的整数替换为 ,三张卡片上的整数之和就变成了 ,这就是最大结果。
样例 解释
输出可能不适合 (位)整数类型。