绩效等级

题目大意:在 CZYZ 每个老师都要算绩效,当然,绩效跟完成的任务数量 w 有关,可以表示为以下公式:s = 10000 - (100 - w)^2。现在呢,校长想算出所有人的绩效,看看其中的众数是多少,如果有多个众数则分别输出。如果不止一种数,所有数出现的频率都一样则不存在众数,输出“Bad Mushroom”(不含引号)。众数:是一组数据中出现次数最多的数值

就一傻逼题,注意坑点:一个数字的时候就是众数

代码如下:

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
#define int long long
using namespace std;

const int N = 1e6 + 66, inf = 21474836444;

int s[N];
vector<int>yh;

signed main()
{
int T = read();
for (int t = 1; t <= T; ++ t)
{
memset(s, 0, sizeof s); yh.clear();
int i, x, ret(0), n = read();
int minv = inf, maxv = -inf;
for (i = 1; i <= n; ++ i)
{
x = read(); x = 10000 - (100 - x) * (100 - x);
minv = min(minv, x), maxv = max(maxv, x);
if (! s[x]) ++ ret;
++ s[x];
}
int cnt = 0, pdbad = 0;
for (i = minv; i <= maxv; ++ i) if (s[i] > cnt) cnt = s[i];

for (i = minv; i <= maxv; ++ i) if (s[i] == cnt) ++ pdbad;
printf ("Case #%lld:\n", t);
if (ret == 1)
{
for (i = minv; i <= maxv; ++ i)
{
if (s[i])
{
cout << i << '\n';
break;
}
}
continue;
}
if (pdbad == ret) {puts("Bad Mushroom"); continue;}
for (i = minv; i <= maxv; ++ i) if (s[i] == cnt) yh.push_back(i);
for (i = 0; i < (int)yh.size() - 1; ++ i) cout << yh[i] << ' ';
cout << yh[(int)yh.size() - 1] << '\n';
}
return 0;
}