• Automatic Judge


    Welcome to HDU to take part in the second CCPC girls’ competition! 
    A new automatic judge system is used for this competition. During the five-hour contest time, you can submit your code to the system, then the judge will reply you. Here is a list of the judge's replies and their meaning: 

    1. Accepted(AC)Accepted(AC): Yes, your program is correct. You did a good job! 

    2. PresentationError(PE)PresentationError(PE) : Your program's output format is not exactly the same as required by the problem, although the output is correct. This usually means the existence of omitted or extra blank characters (white spaces, tab characters and/or new line characters) between any two non-blank characters, and/or blank lines (a line consisting of only blank characters) between any two non-blank lines. Trailing blank characters at the end of each line and trailing blank lines at the of output are not considered format errors. Check the output for spaces, blank lines, etc. against the problem's output specification. 

    3. WrongAnswer(WA)WrongAnswer(WA) : Correct solution not reached for the inputs. The inputs and outputs that we use to test the programs are not public (it is recomendable to get accustomed to a true contest dynamic :-) 

    4. RuntimeError(RE)RuntimeError(RE) : Your program failed during the execution and you will receive the hints for the reasons. 

    5. TimeLimitExceeded(TLE)TimeLimitExceeded(TLE) : Your program tried to run during too much time. 

    6. MemoryLimitExceeded(MLE)MemoryLimitExceeded(MLE): Your program tried to use more memory than the judge default settings. 

    7. OutputLimitExceeded(OLE)OutputLimitExceeded(OLE): Your program tried to write too much information. This usually occurs if it goes into a infinite loop. 

    8. CompilationError(CE)CompilationError(CE): The compiler fails to compile your program. Warning messages are not considered errors. Click on the judge's reply to see the warning and error messages produced by the compiler. 

    For each submission, if it is the first time that the judge returns ``AC'' on this problem, then it means you have passed this problem, and the current time will be added to the penalty of your team. In addition, every time you pass a problem, each unsuccessful try for that problem before is counted as 20 minutes penalty, it should also be added to the penalty of your team. 
    Now given the number of problems in the contest and the submission records of a team. Please write a program to calculate the number of problems the team passed and their penalty.

    InputThe first line of the input contains an integer T(1≤T≤20)T(1≤T≤20), denoting the number of test cases. 
    In each test case, there are two integers n(1≤n≤13)n(1≤n≤13) and m(1≤m≤100)m(1≤m≤100) in the first line, denoting the number of problems and the number of submissions of a team. Problems are labeled by 1001, 1002, ..., 1000+n1000+n. 
    In the following mm lines, each line contains an integer x(1001≤x≤1000+n)x(1001≤x≤1000+n) and two strings t(00:00≤t≤05:00)t(00:00≤t≤05:00) and ss, denoting the team submits problem xx at time tt, and the result is ss. tt is in the format of HH:MM, while ss is in the set {AC, PE, WA, RE, TLE, MLE, OLE}. The team is so cautious that they never submit a CE code. It is guaranteed that all the tt in the input is in ascending order and every tt is unique. 
    OutputFor each test case, print a single line containing two integers AA and BB, denoting the number of problems the team passed and the penalty. 
    Sample Input

    1
    3 5
    1002 00:02 AC
    1003 00:05 WA
    1003 00:06 WA
    1003 00:07 AC
    1002 04:59 AC

    Sample Output

    2 49

    题意:计算罚时,AC前去错误的是20分钟,没AC的没有罚时,输出做的题数与罚时

    #include<iostream>
    #include<algorithm>
    #include<stdlib.h>
    #include<stdio.h>
    #include<string.h>
    #include<math.h>
    #include<map>
    using namespace std;
    struct T
    {
         int t=0,t1,t2,t3;
         char z,y[5];
    }s[10000];
    int main()
    {
        int T;
        scanf("%d",&T);
        while(T--)
        {
            int a,b,i,sum=0,sum1=0,c[100000],d[100000];
            memset(c,0,sizeof(c));
            memset(d,0,sizeof(d));
            scanf("%d%d",&a,&b);
            for(i=0;i<b;i++)
            {
                scanf("%d %d:%d %s",&s[i].t,&s[i].t1,&s[i].t2,&s[i].y);
                s[i].t3=s[i].t1*60+s[i].t2;
                if(strcmp(s[i].y,"AC")==0)
                    d[s[i].t]++;
            }
            for(i=0;i<b;i++)
            {
            if(d[s[i].t]!=0)
            {
                if(strcmp(s[i].y,"AC")==0)
                {
                    if(c[s[i].t]==0)
                    {
                    sum+=s[i].t3;
                    sum1++;
                    }
                    c[s[i].t]++;
                }
                else
                {
                    if(c[s[i].t]==0)
                        sum+=20;
                }
            }
            }
            printf("%d %d
    ",sum1,sum);
        }
        return 0;
    }
    
    
    

     

  • 相关阅读:
    Java基础之集合Collection一:
    Java基础之字符串String:
    Java基础之Map学习代码示例二:
    Jav基础之字符串缓冲区StringBuffer:
    Java基础之TreeSet集合使用泛型、比较器排序示例:
    Java基础之Map学习代码示例一:
    Java基础之StringBuilder
    Java基础之泛型限定的使用示例:
    Java基础之泛型的应用
    spark.primitives 包中的几个基本类
  • 原文地址:https://www.cnblogs.com/zcy19990813/p/9702807.html
Copyright © 2020-2023  润新知