hdu 5038 Grade

Grade

Time Limit: 3000/1500 MS (Java/Others)    Memory Limit: 262144/262144 K (Java/Others)
Total Submission(s): 360    Accepted Submission(s): 203

Problem Description

Ted is a employee of Always Cook Mushroom (ACM). His boss Matt gives him a pack of mushrooms and ask him to grade each mushroom according to its weight. Suppose the weight of a mushroom is w, then it’s grade s is

s = 10000 - (100 - w)^2
What’s more, Ted also has to report the mode of the grade of these mushrooms. The mode is the value that appears most often. Mode may not be unique. If not all the value are the same but the frequencies of them are the same, there is no mode.

Input

The first line of the input contains an integer T, denoting the number of testcases. Then T test cases follow.

The first line of each test cases contains one integers N (1<=N<=10^6),denoting the number of the mushroom.

The second line contains N integers, denoting the weight of each mushroom. The weight is greater than 0, and less than 200.

Output

For each test case, output 2 lines.

The first line contains "Case #x:", where x is the case number (starting from 1)

The second line contains the mode of the grade of the given mushrooms. If there exists multiple modes, output them in ascending order. If there exists no mode, output “Bad Mushroom”.

Sample Input

3
6
100 100 100 99 98 101
6
100 100 100 99 99 101
6
100 100 98 99 99 97

Sample Output

Case #1:
10000
Case #2:
Bad Mushroom
Case #3:
9999 10000

题意:给你一些蘑菇,由他的重量求出价值

让你输出价值中出现次数最多的。如果有多个价值出现一样多,并且没有别的价值了,那么就输出Bad Mushroom。

否则输出出现频率最高的价值,按照升序输出。

因为价值最多是0-10000 所以开个数组记录下出现的次数就好了

#include <iostream>
#include <cstring>
#include <cstdio>
#include <string>
using namespace std;
int a[10010];
int cnt = 0, T, N;
int main(){
	scanf("%d", &T);
	while(T--){
		memset(a, 0, sizeof(a));
		cnt++; printf("Case #%d:\n", cnt);

		scanf("%d", &N);
		int temp, max = 0;
		int mark = N;
		while(N--){
			scanf("%d", &temp);
			a[10000-(100-temp)*(100-temp)]++;
		}

		for(int i = 0; i <= 10000; i++){
			if(a[i] > max)  max = a[i];
		}
		int cnt2 = 0;
		for(int i = 0; i <= 10000; i++){
			if(a[i] == max) cnt2++;
		}
		if(cnt2*max == mark && cnt2 > 1) printf("Bad Mushroom\n");
		else{
			bool flag2 = false;
			for(int i = 0; i <= 10000; i++){
				if(a[i] == max) {
					if(flag2 == false){
						printf("%d", i); flag2 = true;
					}
					else printf(" %d", i);
				}
			}
			printf("\n");
		}

	}

	return 0;
}

  

时间: 2024-10-20 09:13:40

hdu 5038 Grade的相关文章

HDU 5038 Grade(数学)

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=5038 Problem Description Ted is a employee of Always Cook Mushroom (ACM). His boss Matt gives him a pack of mushrooms and ask him to grade each mushroom according to its weight. Suppose the weight of a m

HDU 5038 Grade北京赛区网赛1005

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=5038 解题报告:就是输入n个数w,定义s = 10000 - (100 - w)^2,问s出现频率最高的是哪些,当所有的不同的s出现频率相同时,输出Bad Mushroom,当s只有一种时,直接输出. 1 #include<cstdio> 2 #include<cstring> 3 #include<iostream> 4 #include<algorithm>

hdu 5038 Grade(简单模拟求解)2014 ACM/ICPC Asia Regional 北京 Online

Grade                                                                     Time Limit: 3000/1500 MS (Java/Others)    Memory Limit: 262144/262144 K (Java/Others) Problem Description Ted is a employee of Always Cook Mushroom (ACM). His boss Matt gives h

hdu 5038 Grade(水)

题目链接: huangjing 思路: 这个题目应该随便怎么搞都可以,我说一下我的思路,可以根据题目的数据计算出价值的取值范围为0~10000,所以用一个1w的数组表示数组,下标代表价值,数组值代表数目, 然后这个题目要特判一下全是一样的值的情况. 题目: Grade Time Limit: 3000/1500 MS (Java/Others)    Memory Limit: 262144/262144 K (Java/Others) Total Submission(s): 297    A

[ACM] hdu 5038 Grade

Grade Problem Description Ted is a employee of Always Cook Mushroom (ACM). His boss Matt gives him a pack of mushrooms and ask him to grade each mushroom according to its weight. Suppose the weight of a mushroom is w, then it's grade s is s = 10000 -

HDU - 5038 Grade(水题/思维)

题面 Ted is a employee of Always Cook Mushroom (ACM). His boss Matt gives him a pack of mushrooms and ask him to grade each mushroom according to its weight. Suppose the weight of a mushroom is w, then it's grade s \({s = 10000 - (100 - w)^2}\) What's

hdu 5038 Grade 水

用map,也可以用数组,少了个特判WA了一发. #include <iostream> #include <cstdio> #include <cstring> #include <algorithm> #include <cmath> #include <vector> #include <map> using namespace std; const int maxn=1000005; int n; int a[max

HDU 5038 Grade (水题,坑题)

题意:给 n 个数,输出众数,但是如果所有的频率都相同但数不同输出 Bad Mushroom. 析:直接记录个数直接暴力就,就是要注意只有一种频率的时候. 代码如下: #pragma comment(linker, "/STACK:1024000000,1024000000") #include <cstdio> #include <string> #include <cstdlib> #include <cmath> #include

hdoj 5038 Grade【众数】

题目:hdoj 5038 Grade 题意:给出一组数,求众数,按升序输出 分析:只考众数的概念,但是一直没有搞清楚 众数:一组数中出现次数最多的数,假如所有数据的出现次数都一样,那么这组数据没有众数.(注意:数组中只有一个数的话众数就是它本身) AC 代码: #include<iostream> #include<cstdio> #include<cstring> #include<cmath> #include<algorithm> #inc