1. 程式人生 > >1058 選擇題 (20 分)

1058 選擇題 (20 分)

 

1058 選擇題 (20 分)

批改多選題是比較麻煩的事情,本題就請你寫個程式幫助老師批改多選題,並且指出哪道題錯的人最多。

輸入格式:

輸入在第一行給出兩個正整數 N(≤ 1000)和 M(≤ 100),分別是學生人數和多選題的個數。隨後 M 行,每行順次給出一道題的滿分值(不超過 5 的正整數)、選項個數(不少於 2 且不超過 5 的正整數)、正確選項個數(不超過選項個數的正整數)、所有正確選項。注意每題的選項從小寫英文字母 a 開始順次排列。各項間以 1 個空格分隔。最後 N 行,每行給出一個學生的答題情況,其每題答案格式為 (選中的選項個數 選項1 ……)

,按題目順序給出。注意:題目保證學生的答題情況是合法的,即不存在選中的選項數超過實際選項數的情況。

輸出格式:

按照輸入的順序給出每個學生的得分,每個分數佔一行。注意判題時只有選擇全部正確才能得到該題的分數。最後一行輸出錯得最多的題目的錯誤次數和編號(題目按照輸入的順序從 1 開始編號)。如果有並列,則按編號遞增順序輸出。數字間用空格分隔,行首尾不得有多餘空格。如果所有題目都沒有人錯,則在最後一行輸出 Too simple

輸入樣例:

3 4 
3 4 2 a c
2 5 1 b
5 3 2 b c
1 5 4 a b d e
(2 a c) (2 b d) (2 a c) (3 a b e)
(2 a c) (1 b) (2 a b) (4 a b d e)
(2 b d) (1 e) (2 b c) (4 a b c d)

輸出樣例:

3
6
5
2 2 3 4

 


題目好像不是很難,但是就寫了很長時間,折騰格式折騰了很久。 輸入的空格換行 很煩。

格式化輸入感覺scanf比cin好用。


#define _CRT_SECURE_NO_WARNINGS
#include<iostream>
using namespace std;
struct question
{
	int scores;
	int n_choices;
	int n_right;
	char answers[5];
};

void get_answers(int M_questions,question* questions) {
	for (int i = 0; i < M_questions; i++) {
		//分數,選項個數,正確選項個數
		cin >> questions[i].scores >> questions[i].n_choices
			>> questions[i].n_right;
		//正確選項
		for (int j = 0; j < questions[i].n_right; j++)
			scanf(" %c", &questions[i].answers[j]);
	}
}
int main()
{
	//N個學生,M個題目
	int N_students, M_questions;
	cin >> N_students >> M_questions;

	//錄入M個問題的答案
	question questions[101];
	get_answers(M_questions, questions);


	int wrong[101] = { 0 };	//題目錯的次數
	int student_score[1001] = { 0 };//學生得分

	question  student; //學生試卷
	for (int i = 0; i < N_students; i++) {
		scanf("\n");
		for (int j = 0; j < M_questions; j++) {
			bool isWrong = false;
			if (j != 0) scanf(" ");
			scanf("(%d", &student.n_right);
			for (int k = 0; k < student.n_right; k++) {
				scanf(" %c", &student.answers[k]);
				if (student.answers[k] != questions[j].answers[k] ||
					student.n_right != questions[j].n_right)
					isWrong = true;
			}
			scanf(")");
			if (isWrong)
				wrong[j]++;
			if (!isWrong && student.n_choices == student.n_choices)
				student_score[i] += questions[j].scores;
		}
	}
	for (int i = 0; i < N_students; i++)
		cout << student_score[i] << endl;

	int maxWrong = 0;
	for (int i = 0; i <M_questions ; i++) {
		if (wrong[i] > maxWrong) {
			maxWrong = wrong[i];
		}
	}
	if (maxWrong == 0)
		printf("Too simple");
	else {
		printf("%d", maxWrong);
		for (int i = 0; i < M_questions; i++) {
			if (wrong[i] == maxWrong) {
				printf(" %d", i + 1);
			}
		}
	}
	return 0;
}