MYF

HDU 5777 domino

题目链接

HDU 5777

题目类型:机智题

题目来源:BestCoder #85

题目分析

题目大意

现在有n个多米诺骨牌,给出n-1个间距,以及玩家可以推倒的次数,多米诺骨牌的高度由玩家指定,问n张多米诺骨牌的最小高度和。

解析

手动模拟一下不难发现,如果只能推倒一次的话,那高度必为所有距离之和加n(手动模拟一下不难找到规律),玩家要是推倒的话肯定优先将最高的改为1,然后再将次高的改为1,一直改k次,不过这里有个坑,就是k可能比n要大,所以排序完删高度的时候要注意删除的个数。

代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#include <set>
#include <map>
#include <stack>
#include <cmath>
#include <queue>
#include <cstdio>
#include <string>
#include <vector>
#include <iomanip>
#include <bitset>
#include <cstring>
#include <iostream>
#include <deque>
#include <algorithm>
#define Memset(a,val) memset(a,val,sizeof(a))
#define PI acos(-1)
#define PB push_back
#define MP make_pair
#define rt(n) (i == n ? '\n' : ' ')
#define hi printf("Hi----------\n")
#define IN freopen("input.txt","r",stdin);
#define OUT freopen("output.txt","w",stdout);
#define debug(x) cout<<"Debug : ---"<<x<<"---"<<endl;
#pragma comment(linker, "/STACK:1024000000,1024000000")
using namespace std;
typedef pair<int,int> PII;
typedef long long ll;
const int maxn=100000+5;
const int mod=1000000007;
const int INF=0x3f3f3f3f;
const double eps=1e-8;
int a[100000+10];
bool cmp(int x,int y){
return x>y;
}
int main(){
int T,n,m;
scanf("%d",&T);
while (T--) {
scanf("%d%d",&n,&m);
ll tot=1;
for (int i=1; i<n; i++) {
scanf("%d",&a[i]);
tot += a[i]+1;
}

sort(a+1, a+n, cmp);
for (int i=1; i<min(n, m); i++) {
tot -= a[i];
}
printf("%lld\n",tot);
}
}