zoukankan      html  css  js  c++  java
  • 杭电 1037 Online Judge 字符处理

    Online Judge

    Ignatius is building an Online Judge, now he has worked out all the problems except the Judge System. The system has to read data from correct output file and user’s result file, then the system compare the two files. If the two files are absolutly same, then the Judge System return “Accepted”, else if the only differences between the two files are spaces(’ ‘), tabs(‘ ’), or enters(‘ ’), the Judge System should return “Presentation Error”, else the system will return “Wrong Answer”.

    Given the data of correct output file and the data of user’s result file, your task is to determine which result the Judge System will return.

    Input
    The input contains several test cases. The first line of the input is a single integer T which is the number of test cases. T test cases follow. Each test case has two parts, the data of correct output file and the data of the user’s result file. Both of them are starts with a single line contains a string “START” and end with a single line contains a string “END”, these two strings are not the data. In other words, the data is between the two strings. The data will at most 5000 characters.

    Output
    For each test cases, you should output the the result Judge System should return.

    Sample Input
    4
    START
    1 + 2 = 3
    END
    START
    1+2=3
    END
    START
    1 + 2 = 3
    END
    START
    1 + 2 = 3

    END
    START
    1 + 2 = 3
    END
    START
    1 + 2 = 4
    END
    START
    1 + 2 = 3
    END
    START
    1 + 2 = 3
    END

    Sample Output
    Presentation Error
    Presentation Error
    Wrong Answer
    Presentation Error

    #include<iostream>
    #include<cstdio>
    #include<cstring>
    using namespace std;
    int main()
    {
        int l;
        cin>>l;
        getchar();
        while(l--)
        {
            char a[10010],b[10010],c[10010],d[10010],e[10010];
            gets(a);
            memset(b,0,sizeof(b));
            while(gets(a))
            {
                if(strcmp(a,"END")==0) break;
                if(strcmp(a,"END")!=0) strcat(b,a);//链接输入的 字符
                strcat(b,"
    ");//每个句末 都有一个换行
            }
            memset(c,0,sizeof(c));
            gets(a);
            while(gets(a))
            {
                if(strcmp(a,"END")==0) break;
                if(strcmp(a,"END")!=0) strcat(c,a);
                strcat(c,"
    ");
            }
            if(strcmp(b,c)==0)
            {
                printf("Accepted
    ");
                continue;
            }
            int l=strlen(b);
            int h=strlen(c);
            memset(d,0,sizeof(d));
            memset(e,0,sizeof(e));
            int n=0,m=0,i;
            for(i=0;i<l;i++)
            {
                if(b[i]!=' '&&b[i]!='
    '&&b[i]!='	')//保留有效的 字符 去除空格 回车
                    d[n++]=b[i];
            }
            d[n]='';
            for(i=0;i<h;i++)
            {
                if(c[i]!=' '&&c[i]!='
    '&&c[i]!='	')
                    e[m++]=c[i];
            }
            e[m]='';
            if(strcmp(e,d)==0)
                printf("Presentation Error
    ");
            else
                printf("Wrong Answer
    ");
        }
        return 0;
    }
    
  • 相关阅读:
    hiho_1081_最短路径1
    hiho_1079_离散化
    hiho_1078_线段树区间修改
    hiho_1069_最近公共祖先3
    【.netcore学习】.netcore添加到 supervisor 守护进程自启动报错
    【.NetCore学习】ubuntu16.04 搭建.net core mvc api 运行环境
    【.NetCore学习】ASP.NET Core EF Core2.0 DB First现有数据库自动生成实体Context
    【vue基础学习】vue.js开发环境搭建
    【vue学习】vue中怎么引用laydate.js日期插件
    【年终总结】个人的2017年年终总结
  • 原文地址:https://www.cnblogs.com/nanfenggu/p/7900189.html
Copyright © 2011-2022 走看看