1201A A. Important Exam

								A. Important Exam
								time limit per test1 second
								memory limit per test256 megabytes
								inputstandard input
								outputstandard output

A class of students wrote a multiple-choice test.

There are n students in the class. The test had m questions, each of them had 5 possible answers (A, B, C, D or E). There is exactly one correct answer for each question. The correct answer for question i worth ai points. Incorrect answers are graded with zero points.

The students remember what answers they gave on the exam, but they don’t know what are the correct answers. They are very optimistic, so they want to know what is the maximum possible total score of all students in the class.

Input
The first line contains integers n and m (1≤n,m≤1000) — the number of students in the class and the number of questions in the test.

Each of the next n lines contains string si (|si|=m), describing an answer of the i-th student. The j-th character represents the student answer (A, B, C, D or E) on the j-th question.

The last line contains m integers a1,a2,…,am (1≤ai≤1000) — the number of points for the correct answer for every question.

Output
Print a single integer — the maximum possible total score of the class.

Examples
input

2 4
ABCD
ABCE
1 2 3 4
output
16
input
3 3
ABC
BCD
CDE
5 4 12
output
21
Note
In the first example, one of the most optimal test answers is “ABCD”, this way the total number of points will be 16.

In the second example, one of the most optimal test answers is “CCC”, this way each question will be answered by exactly one student and the total number of points is 5+4+12=21.
题意: 在一场考试中,已知每位同学的答案;给出n个字符串,每个字符只为ABCDE五个中的一个,并给出每题对应的分值,不知道每题的正确答案,问全班的最大成绩。
思路: 对于每一列枚举出答案一样数量的最大值,对应相乘并相加即可。

#include <iostream>
#include <cstring>
#include <map>
using namespace std;
int main() {
	char s[1005][1005];
	int n, mm, a[1005];
	scanf("%d%d", &n, &mm);
	for (int i = 0; i < n; i++) {
		scanf("%s", s[i]);
	}
	for (int i = 0; i < mm; i++) {
		scanf("%d", &a[i]);
	}
	map<char, int> m;
	int ans = 0, maxn = 0;
	for (int i = 0; i < mm; i++) {
		m.clear();
		maxn = 0;
		for (int j = 0; j < n; j++) {
			m[s[j][i]]++;
		}
		for (auto it = m.begin(); it != m.end(); it++) {
			maxn = max(maxn, it->second);
		}
		ans += maxn * a[i];
	}
	printf("%d\n", ans);
	return 0;
} 
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值