PAT (Basic Level) Practise (中文) 1073. 多选题常见计分法(20)

来源:互联网 发布:域名证书 编辑:程序博客网 时间:2024/06/05 17:57

部分正确2分,只做了一部分,无法计算出哪道题错的最多
时间限制
400 ms
内存限制
65536 kB
代码长度限制
8000 B
判题程序
Standard
作者
CHEN, Yue

批改多选题是比较麻烦的事情,有很多不同的计分方法。有一种最常见的计分方法是:如果考生选择了部分正确选项,并且没有选择任何错误选项,则得到50%分数;如果考生选择了任何一个错误的选项,则不能得分。本题就请你写个程序帮助老师批改多选题,并且指出哪道题的哪个选项错的人最多。

输入格式:

输入在第一行给出两个正整数N(<=1000)和M(<=100),分别是学生人数和多选题的个数。随后M行,每行顺次给出一道题的满分值(不超过5的正整数)、选项个数(不少于2且不超过5的正整数)、正确选项个数(不超过选项个数的正整数)、所有正确选项。注意每题的选项从小写英文字母a开始顺次排列。各项间以1个空格分隔。最后N行,每行给出一个学生的答题情况,其每题答案格式为“(选中的选项个数 选项1 ……)”,按题目顺序给出。注意:题目保证学生的答题情况是合法的,即不存在选中的选项数超过实际选项数的情况。

输出格式:

按照输入的顺序给出每个学生的得分,每个分数占一行,输出小数点后1位。最后输出错得最多的题目选项的信息,格式为:“错误次数 题目编号(题目按照输入的顺序从1开始编号)-选项号”。如果有并列,则每行一个选项,按题目编号递增顺序输出;再并列则按选项号递增顺序输出。行首尾不得有多余空格。如果所有题目都没有人错,则在最后一行输出“Too simple”。
输入样例1:

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) (3 b d e) (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) (1 c) (4 a b c d)

输出样例1:

3.5
6.0
2.5
2 2-e
2 3-a
2 3-b

输入样例2:

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

输出样例2:

5.0
5.0
Too simple

import java.io.BufferedReader;import java.io.IOException;import java.io.InputStreamReader;import java.util.ArrayList;import java.util.Arrays;import java.util.List;import java.util.Scanner;public class Main {  public static void main(String[] args) throws IOException {    BufferedReader bf=new BufferedReader(new InputStreamReader(System.in));    String str1=bf.readLine();    int student=Integer.parseInt(str1.split(" ")[0]);    int ti=Integer.parseInt(str1.split(" ")[1]);    String right[]=new String[ti];    int error_log_cnt[]=new int[student];    int error_log_num[]=new int[student];    String error_log_Inf[]=new String[student];    for (int i = 0; i < right.length; i++) {      right[i]=bf.readLine();    }    List<String> answer[]=new ArrayList[student];    for (int i = 0; i < answer.length; i++) {      answer[i]=parse(bf.readLine());    }    for (int i = 0; i < student; i++) {      double score=0.0;      for (int j = 0; j < ti; j++) {        if (right[j].substring(4).equals(answer[i].get(j))) {          score+=Integer.parseInt(right[j].split(" ")[0]);        }else/* if(answer[i].get(j).contains()) */{          String right_t=right[j].substring(6,right[j].length()).replace(" ", "");          String answer_t=answer[i].get(j).replace(" ", "").substring(1);//                    //List<String> list=new ArrayList<String>();          String right_t2=new String(right_t);          String answer_t2=new String(answer_t);          for (int k = 0; k < answer_t.length(); k++) {            if (right_t2.contains(answer_t.charAt(k)+"")) {              answer_t2=answer_t2.replace(answer_t.charAt(k)+"", "");            }            right_t2=right_t2.replace(answer_t.charAt(k)+"", "");          }          if (answer_t2.isEmpty()) {            score+=Integer.parseInt(right[j].split(" ")[0])/2.0;          }else {            //error_log_cnt[i]++;            error_log_num[i]=j;            error_log_Inf[i]=answer_t2;            //System.out.println(error_log_cnt[i]+" "+error_log_num[i]+"-"+error_log_Inf[i]);          }        }      }      System.out.println(score);    }    int max=0;    for (int i = 0; i < student; i++) {      if (max<error_log_cnt[i]) {        max=error_log_cnt[i];      }    }    for (int i = 0; i < student; i++) {      if (max==error_log_cnt[i]) {        //System.out.println(error_log_cnt[i]+" "+(error_log_num[i])+"-"+error_log_Inf[i]);      }    }    System.out.println("Too simple");  }  public static List<String> parse(String s){    boolean isStart=false;    List<String> list=new ArrayList<>();    String temp="";    for (int i = 0; i < s.length(); i++) {      if (s.charAt(i)=='(') {        isStart=true;      }else if (s.charAt(i)==')') {        isStart=false;        list.add(temp);        temp="";              }else {        if (isStart) {          temp+=s.charAt(i);                  }      }    }    return list;  }}