MYF

HDU 2570 迷瘴

题目链接

HDU 2570

解题方法:水题

题目分析

解析

排序,然后再贪心的找即可。

Tips:


    精度处理需要注意。我的方法是全部先按整数累加,最后再除的。

代码

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
54
55
56
57
58
59
60
61
#include <set>
#include <map>
#include <stack>
#include <cmath>
#include <queue>
#include <cstdio>
#include <string>
#include <vector>
#include <iomanip>
#include <cstring>
#include <iostream>
#include <algorithm>
#define Memset(a,val) memset(a,val,sizeof(a))
#define PI acos(-1)
#define rt(n) (i == n ? '\n' : ' ')
#define hi printf("Hi----------\n")
#define debug(x) cout<<"Debug : ---"<<x<<"---"<<endl;
#define eps 1e-8
#define INF 0x3f3f3f3f
#pragma comment(linker, "/STACK:1024000000,1024000000")
typedef long long ll;
using namespace std;
#define maxn 10005
inline void scan(int &x)
{
char c; for(c = getchar();c < '0' || c > '9';c = getchar()); x = c - '0';
for(c = getchar();c >= '0' && c <= '9';c = getchar()) x = (x << 1) + (x << 3) + c - '0';
}
bool cmp(int x, int y){
return x<y;
}
int main(){
int c;
int n,v,w,cnt=0,total=0,sum=0;
scan(c);
while (c--) {
int a[105]={};
cnt=0;
total=0;
sum=0;
scan(n),scan(v),scan(w);
for (int i=0; i<n; i++) {
scan(a[i]);
}
sort(a, a+n, cmp);
for (int i=0; i<n; i++) {
total+=w;
sum+=a[i];
cnt++;
if (total<sum) {
cnt--;
sum-=a[i];
break;
}
}
if (cnt==0)
printf("0 0.00\n");
else
printf("%d %.2f\n",v*cnt,0.01*sum/cnt);
}
}